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 have an application where I want to show the content of a post I have in my wall.

I have the post_id, but how do I know how to show the comments and content of the post?

share|improve this question

1 Answer

If you get the JSON response for that particular post

 https://graph.facebook.com/post_id

there is an "actions" object, that contains a "comment" and "like" actions.

This also contains all the information you are after, the "message" object being the post message and a "comments" object containing an array of all comments. You just need to inspect the various properties and use their values.

Is that what you are after?

You can see a response on Graph API explorer by entering your post_id (you will need to grant the explorer application the correct permissions).

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.