I'm accessing the Facebook API through the JavaScript API and need the users statuses and wall photos. I'm getting the statuses through /me/statuses, but I do not really have a clue how to include the picture statuses instead of merging the data with the pictures that can be found in the album "Wall Photos". It would be great if that would work with a single request to enable proper pagination.
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 have to set up an app and get the read_stream permission from the user if you haven't already. Then you can use me/feed to query all posts on the wall. The type of the post won't show up as status but as photo, no matter if it has been uploaded to an album and then shared or directly shared via status update. That is probably why you can't get them through me/statuses. |
|||||||
|
|
You can use FQL to get that info – the stream table has a field called
46 is a status update, 247 is a photo posted to the wall. |
|||
|
|