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 have an app where I ask the user to select one friend from his friend list, and then I want to get the friend's profile photo with php.

I have all the necessary permissions set. I require a breakdown of how this can be achieved.

share|improve this question

closed as not a real question by CBroe, Ricardo Lohmann, Buggabill, Andreas Köberle, Matt Fenwick Dec 14 '12 at 21:13

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 3 down vote accepted
  1. Get the user's friends with Graph API: https://graph.facebook.com/USER_ID/friends and display them.
  2. Let the user make a choice and keep the ID of the friend he selected.
  3. Display his profile picture with the desired size: https://graph.facebook.com/FRIEND_ID?fields=picture.height(720)

Little trick: you'll get the max size by choosing more than 960 pixels as the height.

share|improve this answer
Hi. Thanks for your comment. It obviously makes sense. I just haev an issue on the "Let the user make a choice and keep the ID of the friend he selected" part. What will be the suggested practice considering I'm using php? – Dave Homer Dec 17 '12 at 7:47
For each friends, generate a link that contains the id (i.e. yoursite.com/showpicture.php?id=123456789). When you click on the link, it redirects you to the PHP script that displays the profile picture. – Stéphane Bruckert Dec 17 '12 at 8:09
Thank you, I will try this as well. – Dave Homer Dec 17 '12 at 11:01
  1. For the friend selector, you can use any "multi-friend selector" plugin available. I used mikebrevoort's plugin in one of my app.

  2. This will return the ID's of the selected friends.

  3. Get the profile picture using:

    https://graph.facebook.com/SELECTED_ID/picture?type=TYPE
    (TYPE: small/normal/large/square)
    
share|improve this answer
Hi, I have downloaded the files, but the video on Vimeo is not playing. Also, when I check the example I get the login error message. Is there any ways I could get a proper documentation non how to use this plugin? Thank you. – Dave Homer Dec 17 '12 at 7:46
I already used this one and work pretty well! github.com/mbrevoort/jquery-facebook-multi-friend-selector – Dave Homer Dec 17 '12 at 11:02

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