如何使用 Graph API 设置 Facebook 相册隐私?

发布于 2024-09-26 03:28:04 字数 92 浏览 11 评论 0原文

我想知道是否可以使用 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 技术交流群。

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

发布评论

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

评论(3

你没皮卡萌 2024-10-03 03:28:04

您可以在创建相册时设置隐私设置。

目前,您无法更新设置,也无法通过 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/

黒涩兲箜 2024-10-03 03:28:04

暂时不可能。在 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

白日梦 2024-10-03 03:28:04

卷曲 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"}'

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