开发者

Best way to get Facebook friend photos with Android Facebook API

开发者 https://www.devze.com 2023-03-31 09:10 出处:网络
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

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

Best way to get Facebook friend photos with Android Facebook API

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

Best way to get Facebook friend photos with Android Facebook API

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

Best way to get Facebook friend photos with Android Facebook API

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

Best way to get Facebook friend photos with Android Facebook API

0

精彩评论

暂无评论...
验证码 换一张
取 消