I have a facebook application that I use to post messages on user's wall. I save the post id. I want to know the number of likes and comments on each of these posts? Do I need a read_stream permission to access my own posts? What is the best way to do this?
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.
|
|
|
You will need read_stream permission from the user to be able to read the post since the user owns their own status update (and its likes/comments), not your application. If you have read_stream, you can then just access /postID via the Graph API. |
|||
|
|