Best way to get Facebook friend photos with Android Facebook API
What is the best way to get all the profile pictures fo开发者_运维问答r a user's friends? Do I have to loop every Facebook friend or is there an easier way?
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
https://graph.facebook.com/4/picture?type=square
https://graph.facebook.com/4/picture?type=normal
https://graph.facebook.com/4/picture?type=large
精彩评论