我正在尝试在这里使用图形 API 在 dailymotion 上上传视频:
http://www.dailymotion.com/doc/api/graph-api.html
已通过读写权限成功验证,但尝试使用以下 api 发布方法上传视频时:http: //www.dailymotion.com/doc/api/graph-api.html#publishing 出现错误
stdClass Object ( [error] => stdClass Object ( [code] => 400 [message] => `url' 参数返回无效的内容类型:text/plain,必须是 video/* [type] => invalid_parameter ) )
我正在使用以下 cURL 向 API 发布请求:
$fields = '';
$data = array(
"access_token" => $token,
"url" => "https://www.somesite.com/demo/dailymotion/X.mp4"
);
$url = "https://api.dailymotion.com/me/videos";
foreach($data as $key => $value) {
$fields .= $key . '=' . $value . '&';
}
rtrim($fields, '&');
$post = curl_init();
curl_setopt($post, CURLOPT_URL, $url);
curl_setopt($post, CURLOPT_POST, count($data));
curl_setopt($post, CURLOPT_POSTFIELDS, $fields);
curl_setopt($post, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($post);
curl_close($post);
print_r(json_decode($result));
请有人帮我解决这个问题。