i have post created calling graph api
https://graph.facebook.com/me/feed/?access_token=<token>
it returns somthing like: {"id":"<UID>_<POST_ID>"}
now i want to hide this post by api call
curl -F "is_hidden=true" "https://graph.facebook.com/<POST_ID>?access_token=<token>
but i am geting this response:
{"error":{"message":"(#100) The parameter reorder_pids is required", "type": "OAuthException", "code":100}}
is here somebody who using api for this? (hiding post) if yes, is it working for you? ;)