$file = "report.xls";
$curl = curl_init();
$username = "******************************";
$password = "******************************";
$post_data = [
"template" => [
"meta" => [
"href" => "https://online.moysklad.ru/api/remap/1.2/entity/demand/metadata/embeddedtemplate/29a9b716-8664-4b13-baae-a78db1710bdb",
"type" => "embeddedtemplate",
"mediaType" => "application/json"
]
],
//"extension" => "xls", // excel файл
"extension" => "html" // выводим в браузер
];
curl_setopt_array($curl, [
CURLOPT_URL => "https://online.moysklad.ru/api/remap/1.2/entity/demand/fdc8dbab-acd6-11eb-0a80-09cb004a2c1a/export",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_BINARYTRANSFER => true,
CURLOPT_TIMEOUT => 30,
CURLOPT_POSTFIELDS => json_encode($post_data),
CURLOPT_HTTPHEADER => [
"Authorization: Basic ". base64_encode($username.':'.$password),
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
// Что делать решай сам
// сохранить так где-то на сервере
// $f = fopen($file, "a");
// fwrite($f, $response);
// fclose($f);
// Или так - файл скачивается в браузере
// header('Content-Description: File Transfer');
// header('Content-Type: application/octet-stream');
// header('Content-Disposition: attachment; filename=' . basename($file));
// header('Content-Transfer-Encoding: binary');
echo $response;
}