omar
omar

Reputation: 446

Get Facebook profile photos

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

Answers (1)

Gazler
Gazler

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

Related Questions