How Can I retrieve photos on the wall post., I only know how to get profile picture by using this graph. https://graph.facebook.com/{user_id}/picture
but I don't know on wall photos.
Asked
Active
Viewed 1,831 times
2

Robin Carlo Catacutan
- 13,249
- 11
- 52
- 85
-
Wall photo is a general wall post. Have you tried to look at the documentation? – zerkms Jan 28 '12 at 09:31
-
@zerkms Yes, but no luck in wall photos. I can get my wall post by using the graph api but, photos that are posted by my friends I can't. Only links are given to me. – Robin Carlo Catacutan Jan 28 '12 at 09:34
-
1it would be great if you shown what requests you have tried and which don't work – zerkms Jan 28 '12 at 09:41
-
here's the [link](http://stackoverflow.com/questions/9036566/facebook-graph-api-picture) for additional details – Robin Carlo Catacutan Jan 28 '12 at 12:24
1 Answers
1
It a three step process to obtain all the wall photos of a user
- First make a request to obtain list of all the albums (me/albums)
- Search the list obtain in first step for album name "Wall Photos"
- use the id obtained in step 2 to get list of photos in that album. (356003227794989/photos)
and dont forget to have proper permission to access photos.

Saqib Saud
- 2,799
- 2
- 27
- 41