如何使用 Graph API 设置 Facebook 相册隐私?
我想知道是否可以使用 RestFB Java 库为特定 Facebook 相册设置隐私设置?
非常感谢你,
问候,
安东尼
I would like to know if it's possible to set the privacy setting for a specific Facebook album with RestFB Java library ?
Thank you very much,
Regards,
Anthony
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在创建相册时设置隐私设置。
目前,您无法更新设置,也无法通过 API 删除现有相册,以防您只想删除并重新创建它作为解决方法。
http://bugs.developers.facebook.net/show_bug.cgi?id=17111
创建相册时,您需要创建一个隐私对象并将其作为参数包含在 POST 请求中,这是一个 JSON 编码的字符串,在 Post 对象的文档中对此有更清楚的描述:
https://developers.facebook.com/docs/reference/api/post/
You can set privacy settings when the album is created.
Currently, you can not update the settings, nor can you delete an existing album via API, in case you wanted to just delete and recreate it as a work around.
http://bugs.developers.facebook.net/show_bug.cgi?id=17111
When you create the album, you need to create a privacy object and include it as a parameter in the POST request, which is a JSON-encoded string that is described more clearly in the documentation of a Post object here:
https://developers.facebook.com/docs/reference/api/post/
暂时不可能。在 Facebook 的 API 主页面上,您可以查看可以进行哪些操作。遗憾的是,更新不是其中之一:
http://developers.facebook.com/docs/api
It's not possible for the moment. On the main API page on Facebook, you can see which operations are possible. Sadly, updates are not one of them:
http://developers.facebook.com/docs/api
卷曲 https://graph.facebook.com/me/albums -F 'access_token=xxx' -F '名称=我的专辑' -F '隐私={"value":"ALL_FRIENDS"}'
curl https://graph.facebook.com/me/albums -F 'access_token=xxx' -F 'name=my album' -F 'privacy={"value":"ALL_FRIENDS"}'