Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to know how I can fetch friends' profile picture and display them with the Facebook API for iOS

Thanks

share|improve this question

3 Answers

up vote 21 down vote accepted

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!

share|improve this answer
Thanks for this answer... – Sijo Mar 24 '11 at 7:13
Thanks for the answer, donkim! – ArtSabintsev Dec 6 '11 at 19:40

One line solution:

https://graph.facebook.com/me/friends?access_token=[oauth_token]&fields=name,id,picture
share|improve this answer
4  
This should be the accepter answer :) – Amokrane Chentir Dec 27 '11 at 10:29
That's amazing.....Thanks a lot....Good for me short & sweet. – Jasmit May 21 '12 at 9:10
Good stuff. One liners are our friends. – Tom Pace Sep 22 '12 at 6:57
1  
How to get accces token from graph api? – KAREEM MAHAMMED Dec 4 '12 at 5:38

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.