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.

Is it possible for a facebook app to delete a particular item from the user's feed? These items could be generated from friends or other apps installed by the user or friends' apps posting on the user's wall.

If this is possible, what kind of permissions are required to do so?

share|improve this question

2 Answers

Application only allowed to remove posts created by that application. You will not be able to remove content posted by other users/applications.

Removal (as well as publishing) of posts require publish_stream permission.

If you know the id of feed story just issue DELETE request:

https://graph.facebook.com/POST_ID?method=delete
share|improve this answer

see here: https://developers.facebook.com/docs/reference/api/post/

You can delete a post as long as your application created the post. You delete a post by issuing an HTTP DELETE request to the POST_ID object with publish_stream permission.

so answer to your question is: no, you cannot delete a random post.

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.