发布到 Facebook Graph API 时指定隐私
我想在 Facebook 上自动发布注释,并将其定位到群组中的单个成员。我所说的目标是指只有特定的 Facebook 用户才能阅读该注释。
有没有办法使用图形 API 来做到这一点?我在旧的 REST API 中看到 steam.publish 方法上有一个“隐私”参数(请参阅 http://developers.facebook.com/docs/reference/rest/stream.publish)。图形 API 中有等效的吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
答案如下。
只需在 JSONObject 格式的 Bundle 中包含“隐私”,包括值“SELF”、“ALL_FRIENDS”或“EVERYONE”。
这是使用android SDK 2.0,现在已经可以使用3.0了,但是使用graph api的方法是一样的,如果遇到任何问题请留下评论:)。
Here's the answer.
Just include "privacy" in the Bundle in JSONObject format, including value "SELF", "ALL_FRIENDS" OR "EVERYONE".
This is using android SDK 2.0, and 3.0 is now avaliable, But the way to use graph api is the same, left comment if you reach any problem:).
您可以使用
SELF
php
facebook api
示例:在以下链接中搜索隐私以查看所有选项:
https://developers.facebook.com/docs/graph-api/reference/v2.6/post
You can use
SELF
php
facebook api
example:Search for privacy on the following link to see all options:
https://developers.facebook.com/docs/graph-api/reference/v2.6/post
是的,有:
http://developers.facebook.com/docs/reference/api/帖子
有一个名为“隐私”的字段,您可以对其进行修改。
希望有帮助,
-鲁兹贝
Yes, there is:
http://developers.facebook.com/docs/reference/api/post
There's a field called privacy which you can modify.
Hope that helps,
-Roozbeh
http://developers.facebook.com/docs/reference/api/post
没有告诉如何指定隐私
以正确的方式
处理各种选项 CUSTOM、FRIENDS、NETWORK_FRIENDS
http://developers.facebook.com/docs/reference/api/post
does not tell how to specify privacy
in correct way
for varied option CUSTOM, FRIENDS, NETWORK_FRIENDS
如果您从应用程序发布注释,则可以设置默认活动隐私,如下所示:
它可能是当您验证自己的应用程序时或在:帐户设置 - > 中设置应用程序。
If you are posting notes from an app, you can set default activity privacy as shown here:
It could be set when you are authenticating your own application, or in:
account settings - > applications
.