copy($photo_url, $_SERVER['DOCUMENT_ROOT'].'/tmp/img.jpg'); //Сохраняю фото по ссылке на сервер
$upload_url = json_decode(file_get_contents("
https://api.vk.com/method/photos.getMessagesUpload...".$token))->response->upload_url; //Получаю адрес для загрузки
$post_params = array(
'photo' => $_SERVER['DOCUMENT_ROOT'].'/tmp/img.jpg'
);
$ch = curl_init($upload_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_params);
$response = curl_exec($ch);
curl_close($ch);
В ответе получаю пустой массив photo[] :(