目前,我的Facebook应用程序在Facebook上发帖时将默认隐私设置为“好友”。是否可以将默认隐私更改为公共隐私,或者即使隐私设置为朋友,我也可以使用图形api访问该fb帖子的详细信息吗?
在将隐私设置为好友的帖子中,我得到以下错误:
`{
"error": {
"message": "Unsupported get request. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api",
"type": "GraphMethodException",
"code": 100,
"fbtrace_id": "HItrveu8gg0"
}
}`发布于 2016-03-29 15:12:00
您可以在发帖时设置隐私,这里有一个参数:https://developers.facebook.com/docs/graph-api/reference/user/feed#publish
但是:
此字段不能用于设置比已授予的隐私设置更开放的隐私设置。
如果您希望稍后访问帖子,请向用户授予user_posts权限。
https://stackoverflow.com/questions/36277204
复制相似问题