我发布了创建的调用图api
https://graph.facebook.com/me/feed/?access_token=<token>
它会返回如下内容: { “ID”: “&LT; UID&GT; _&LT; POST_ID&gt;” 中}
现在我想通过api call隐藏这篇文章
curl -F "is_hidden=true" "https://graph.facebook.com/<POST_ID>?access_token=<token>
但是我正在回应这个问题:
{"error":{"message":"(#100) The parameter reorder_pids is required", "type": "OAuthException", "code":100}}
在这里有人使用api吗? (隐藏帖子) 如果是的话,它适合你吗? ;)
答案 0 :(得分:1)
仅在非管理员用户发布帖子时才有效。
答案 1 :(得分:1)
我找到了一种隐藏Facebook页面帖子的方法。
curl -F "timeline_visibility=hidden" "https://graph.facebook.com/<POST_ID>/?access_token=<page_token>
......它返回true。
答案 2 :(得分:0)
在这样的事实之后,实际上是否可以更新帖子的隐私? 我不确定。
您可以在初始创建时设置隐私字段。
privacy={'value':'SELF'}
见
http://developers.facebook.com/docs/reference/api/post/ 和 http://developers.facebook.com/docs/reference/privacy-parameter/