Reputation: 446
I am trying to get the photos in a user profile. I tried to use https://graph.facebook.com/me/photos
, but it returns tagged photos only. Can I get all the photos in all albums?
Upvotes: 1
Views: 661
Reputation: 84180
You are using the wrong API endpoint, you want the albums endpoint.
https://graph.facebook.com/me/albums
From the API page:
From that you can then call https://graph.facebook.com/ALBUM_ID/photos
.
Upvotes: 3