Facebook隐私参数无效

时间:2013-09-04 15:56:09

标签: facebook facebook-graph-api

我正在开发一个代表其用户进行离线发布的fb-app,但我无法使隐私参数正常工作。

事实:

  • app已获得publish_actions权限授权
  • 简单发布工作:没有任何隐私参数,帖子获得在授权过程中选择的默认可见性
  • 以低知名度发布也有效。这个将默认的可见性(公共)降低到只有朋友:privacy = {'value':'ALL_FRIENDS'}

现在我想发布并限制显式用户列表的可见性。 根据这篇文档https://developers.facebook.com/docs/reference/api/privacy-parameter/,我可以将'value'和'allow'结合起来,所以我使用了这个参数:

{'value': 'CUSTOM', 'allow': '{ REAL_ID }'}

但不幸的是,这是回应:

{"error":{"message":"(#100) 'friends' value was not recognized","type":"OAuthException","code":100}}

虽然不推荐使用friends-parameter,但我也尝试了这些组合,但没有运气:

{'value': 'CUSTOM', 'allow': 'ALL_FRIENDS'}
-> {"error":{"message":"An unknown error has occurred.","type":"OAuthException","code":1}}


{'value': 'CUSTOM', 'allow': 'ALL_FRIENDS', 'deny': '{ REAL_ID }'}
-> {"error":{"message":"An unknown error has occurred.","type":"OAuthException","code":1}}


{'value': 'CUSTOM', 'friends': 'ALL_FRIENDS'}
-> {"error":{"message":"An unknown error has occurred.","type":"OAuthException","code":1}}


{'value': 'CUSTOM', 'friends': 'SOME_FRIENDS', 'allow': '{ REAL_ID }'}
-> {"error":{"message":"(#100) 'friends' value was not recognized","type":"OAuthException","code":100}}

如果有人可以提供帮助会很棒,因为我完全失去了这个:(

提前致谢!

1 个答案:

答案 0 :(得分:6)

好的,在联系facebook支持后,我会回答我自己的问题。也许它可以帮助别人...

1)fb在其文档中使用的示例令人困惑:

"privacy={'value': 'CUSTOM', 'allow': '{friend-list-id}'}"

外部括号是正确的,内部的括号应该用您的friends-id或friends-id替换为逗号分隔列表。所以有效的参数是:

"privacy={'value': 'CUSTOM', 'allow': '1234567,3456789'}"

2)使用app-access-token发布时,不支持隐私的CUSTOM值。只有user-access-token支持此功能。