w.donk
w.donk

Reputation: 3262

Best way to get Facebook friend photos with Android Facebook API

What is the best way to get all the profile pictures for a user's friends? Do I have to loop every Facebook friend or is there an easier way?

Upvotes: 0

Views: 3522

Answers (1)

bkaid
bkaid

Reputation: 52063

After your user has authenticated with your application, call the /friends endpoint https://graph.facebook.com/me/friends?access_token=... Parse the result for the friend ids, and then you have the friend's image url which is in this format:

https://graph.facebook.com/4/picture?type=small enter image description here

https://graph.facebook.com/4/picture?type=square https://graph.facebook.com/4/picture?type=square

https://graph.facebook.com/4/picture?type=normal https://graph.facebook.com/4/picture?type=normal

https://graph.facebook.com/4/picture?type=large https://graph.facebook.com/4/picture?type=large

Upvotes: 8

Related Questions