Vimeo API Error 708

爷,独闯天下 提交于 2019-12-11 15:02:08

问题


using Vimeo API to upload a video (mp4) to my Vimeo account. Uinsg the vimeo.php file with a little modification (objects were used when they should have been arrays) I am calling

$video_id = $vimeo->upload

I am able to trace the getQuota, getTicket, verifyChunks but it fails on:

$this->call('vimeo.videos.upload.complete', array('ticket_id' => $ticket, 'filename' => $file_name));

With the following error:

stdClass Object(
[generated_in] => 1.0675
[stat] => fail
[err] => stdClass Object
    (
        [code] => 708
        [expl] => The file could not be saved. Try again.
        [msg] => File error
    ))

Any help?


回答1:


If it can be of any help, I had the exact same error and switching from endpoint_secure to endpoint resolved the issue from the upload form.



来源:https://stackoverflow.com/questions/12265951/vimeo-api-error-708

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!