使用 PHP SDK 上传视频

发布于 2024-12-10 09:47:40 字数 300 浏览 0 评论 0原文

我在这里看到您现在可以上传视频: http://developers.facebook.com/blog/post/515/#video_upload

但我在 github 上的 PHP SDK 中没有看到任何提及它,也没有看到任何示例......它还没有添加到那里吗?或者是否可以使用 PHP SDK 来完成此操作,而不是使用curl 将其扔在那里?

谢谢!

I see here that you can now upload videos:
http://developers.facebook.com/blog/post/515/#video_upload

But I don't see any mention of it in the PHP SDK on github, or any examples... Is it not added there yet? Or is there anyway to do it using the PHP SDK, as opposed to throwing it up there using curl?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秉烛思 2024-12-17 09:47:40

Jason,

如果您使用 sdk,请确保 $facebook->setFileUploadSupport(true); 然后可以发布到 api:

try {
    $data = $facebook->api('/me/videos', 'post', $args); 
} catch (FacebookApiException $e) {
    echo "result=ERROR&message=".$e->getMessage();
                die();
}

Jason,

Make sure, if you are using the sdk, to $facebook->setFileUploadSupport(true); and then can post to the api:

try {
    $data = $facebook->api('/me/videos', 'post', $args); 
} catch (FacebookApiException $e) {
    echo "result=ERROR&message=".$e->getMessage();
                die();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文