在 Facebook 上上传多张照片

发布于 2024-10-29 18:04:27 字数 89 浏览 1 评论 0原文

有没有什么办法可以在facebook上同时上传多张照片... 我使用 GraphAPI 一次上传一张照片......但不是多张...... 请建议... 谢谢...

Is there any way to upload multiple photos together on facebook...
I have uploaded a single photo at a time using GraphAPI....but not multiple...
Please suggest...
Thanks...

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

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

发布评论

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

评论(1

风启觞 2024-11-05 18:04:27

您需要向 Graph API 发出“批量”请求。此处记录:https://developers.facebook.com/docs/reference/api /batch/(查看“上传二进制数据”段落)。基本上,这是一个 cURL 调用,其中您对包含所有“批量”请求的数组进行 json 编码(“batch=[json 调用数组]”)。出于某种原因,Facebook 将您的数组限制为 20 个请求。如果您的服务器上启用了 cURL,它可以很好地转换为 PHP cURL 方法...

curl 
 –F  'access_token=…' \
 -F  'batch=[{"method":"POST", \
              "relative_url":"me/photos", \
              "body":"message=My cat photo" \
              "attached_files":"file1" \
             },
             {"method":"POST", \
              "relative_url":"me/photos", \
              "body":"message=My dog photo" \
              "attached_files":"file2" \
             },
            ]’
 -F  '[email protected]' \
 -F '[email protected]' \
https://graph.facebook.com

更新: 将“替换为”,并将 ' 替换为 '

You need to place a "batched" request to the Graph API. This is documented here: https://developers.facebook.com/docs/reference/api/batch/ (check out the paragraph "Uploading binary data"). Basically it's a cURL call where you json encode an array containing all the "batched" requests ("batch=[json array of calls]"). For some good reson Facebook limits your array to 20 requests. It translates pretty nicely to the PHP cURL methods, if you've got cURL enabled on your server...

curl 
 –F  'access_token=…' \
 -F  'batch=[{"method":"POST", \
              "relative_url":"me/photos", \
              "body":"message=My cat photo" \
              "attached_files":"file1" \
             },
             {"method":"POST", \
              "relative_url":"me/photos", \
              "body":"message=My dog photo" \
              "attached_files":"file2" \
             },
            ]’
 -F  '[email protected]' \
 -F '[email protected]' \
https://graph.facebook.com

UPDATE: replaced “ with " and ‘ with '

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文