I would like to know how I can fetch friends' profile picture and display them with the Facebook API for iOS
Thanks
|
|
|
You can get a list of your friends at this endpoint: https://graph.facebook.com/me/friends. Then, you can get a friend's profile picture at this endpoint: https://graph.facebook.com/[profile_id]/picture. Be sure to use this SDK: https://github.com/facebook/facebook-iphone-sdk Hope this helps! |
|||||
|
|
|
One line solution:
|
|||||||||||||
|
|
If you use Three20, you can try this extension: https://github.com/RIKSOF/three20/tree/development/src/extThree20Facebook It allows you to use all Graph API features with just a few line of code. |
|||
|
|