Facebook: How can I get the next/previous image from the profile feed?
https://graph.facebook.com/me/feed provides only the first image开发者_如何学编程 from the number of images posted, in a users wall. how can i get all the rest images?
What you could do would be to load the albums of a user (https://graph.facebook.com/me/albums), search for the album with "name": "Wall Photos"
, take the id, call https://graph.facebook.com/ALBUMID and read out the photos this album contains with the photo connection.
精彩评论