Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am creating a moderating application in which i need to fetch all the posts on a page and then set the posts to be hidden if required. In Facebook, there is an option to set a post as hidden. How do I do this using the Graph API or FQL?

share|improve this question

2 Answers

up vote 2 down vote accepted

Since a few weeks, you can make a POST request to the post object with the parameter "is_hidden" :

curl –F 'is_hidden=true" \
"https://graph.facebook.com/<POST_ID>?access_token=_"

Check the documentation at "Hiding a Page Post" : https://developers.facebook.com/docs/reference/api/page/

share|improve this answer

You'll want to check out the docs, regarding the privacy field.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.