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.
I’m accessing the Facebook API through the JavaScript API and need the users statuses
Share
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.