两个问题。
1)我正在尝试将视频的缩略图设为视频中特定时间的快照(2秒)。但是,按照此链接中的说明操作后,当我运行以下代码时,缩略图不会更改,并且数组为空。我尝试过不同的时间格式,但不确定哪种是正确的。关于可能出现什么问题的任何建议?
https://developer.vimeo.com/api/playground/videos/%7Bvideo_id%7D/pictures
2)是否可以通过API上传实际的缩略图文件?
$video_data = $lib->request('videos/107110137/pictures', array('time' => '00.02'), 'POST');
echo '<p>video_data after thumb change is <pre>';
print_r($video_data);
//Prints out
Array
(
[body] =>
[status] => 0
[headers] => Array
(
)
)
谢谢!
答案 0 :(得分:0)
状态代码为0表示curl无法访问API服务器。
导致0状态代码的最常见问题是HTTPS证书问题。看看http://unitstep.net/blog/2009/05/05/using-curl-in-php-to-access-https-ssltls-protected-sites/。我不建议他们快速修复,因为它会让你在中间攻击时更容易受到伤害
如果这不起作用,请在_request函数中添加curl_error项检查以了解详情。