我已经发布了创建调用图 api
https://graph.facebook.com/me/feed/?access_token=<token>
它返回类似: {"id":"<UID>_<POST_ID>"}
现在我想通过 api 调用隐藏这篇文章
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吗?(隐藏帖子)如果是,它对你有用吗?;)