总而言之 - 我试图通过Javascript SDK将mp4上传到Facebook。根据文档,我应该能够做到这一点:
/* make the API call */
FB.api(
"/me/videos",
"POST",
{
"source": "{video-data}"
},
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
然而 - 无论我作为一个来源传递什么,我都会回到一个错误对象,上面写着“(#353)你必须选择要上传的视频文件。”这种方法是否缺少引起这种情况的东西?