What is the best way to get ALL profile pictures from a given user? What permissions do I need?
I know I can access the main profile pic using https://graph.facebook.com/[uid]/picture, but how do I get the entire album?
|
What is the best way to get ALL profile pictures from a given user? What permissions do I need? I know I can access the main profile pic using |
||||
|
|
You need You will get three important things from here
The permission required is
Profile Pictures are under "Profile Pictures" album. To get to profile album, you need to look into albums array (as mentioned previously), iterate through the JSON result-set, until you get an album with name = Now you can access it similar to you access any other album. That is, Hope this helps. |
|||||||||||||||
|
|
You can pass the "limit=0" to avoid paging altogether, and you get all the photos in one call. |
|||
|
|
|
To get all profile pictures, firstly you need to get list of all albums, but if count of albums more than 24 you will not get the rest and you probably will not get profile photos album. For this you need to pass Here is example code:
|
|||
|
|
|
There is some way to get the albums of public users without any relation. For example, I'm not friend of the user "foo" but I want his photos. I can see his photos in the UI of Facebook but I can not get through the graph. I'm using explorer from facebook with all permissions and I'm getting always an empty JSON. There is some way to get the photos that I'm seeing in the UI? These photos are public. Real example: UI from facebook: https://www.facebook.com/sonia.milan.9/photos You can see all his photos. Using graph API: sonia.milan.9/albums Return:
|
|||
|
|