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 display the users profile picture inside of my applications canvas page, is there a way to do that using the graph api?

I know I can do it using FBML but I would also like to pass the profile pic to a flash game I am making, so I would have to get the profile pic from the api and send it as a variable, here is the code I have thus far,

$facebook = new Facebook(array(
    'appId'  => FACEBOOK_APP_ID,
    'secret' => FACEBOOK_SECRET_KEY,
    'cookie' => true,
    'domain' => 'myurl/facebook-test'
));

$session = $facebook->getSession();

        $uid = $facebook->getUser();
        $me = $facebook->api('/me');

        $updated = date("l, F j, Y", strtotime($me['updated_time']));

        echo "Hello " . $me['name'] . $me['picture'] . "<br />";
  echo "<div style=\"background:url(images/bg.jpg); width:760px; height:630px;\">" . "You last updated your profile on " . $updated . "</div>" . "<br /> your uid is" . $uid;

$me['picture'] does not seem to be working, but I am still very new to the graph api, and I am probably making a few very amateur mistakes!

Thanx in advance!

share|improve this question

8 Answers

up vote 49 down vote accepted

knowing the user id the url for their profile picture is

http://graph.facebook.com/[UID]/picture

where in place of [UID] you place your $uid variable, and that url can be passed to flash

share|improve this answer
That worked perfectly! Thanx alot! – Odyss3us Jun 10 '10 at 10:12

to get different sizes, you can use the type parameter:

You can specify the picture size you want with the type argument, which should be one of square (50x50), small (50 pixels wide, variable height), and large (about 200 pixels wide, variable height): http://graph.facebook.com/squall3d/picture?type=large.

share|improve this answer
Thank you! I couldn't seem to find this anywhere, but i knew it was possible! – Pete Herbert Penito Feb 24 '11 at 2:37
What's even better is that width/height params works too eg: width=140&height=140 – thinkdj Dec 13 '12 at 11:26
  //create the url
  $profile_pic =  "http://graph.facebook.com/".$uid."/picture";

 //echo the image out
 echo "<img src=\"" . $profile_pic . "\" />"; 

Works fine for me

share|improve this answer

You can also crop/resize the profile picture by providing parameters.

https://graph.facebook.com/[UID]/picture?width=140&height=140

would work too.

share|improve this answer

To get a user's profile picture, call

https://graph.facebook.com/USER_ID/picture

where USER_ID can be the user id number or the user name

To retrieve an image of a specific size use these parameters:

  • height & width OR
  • size

1 - HEIGHT & WIDTH :

The API has been updated in August 2012 to allow you to retrieve user's profile pictures in varying sizes. Add the optional width and height fields as URL parameters:

graph.facebook.com/USER_ID/picture?width=WIDTH&height=HEIGHT

where WIDTH and HEIGHT are your requested dimension values.

This will return a profile picture with a minimum size of WIDTH x HEIGHT while trying to preserve the aspect ratio. For example,

graph.facebook.com/pepsi/picture?width=140&height=110

returns

{
    "data": 
     {
        "url": "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-snc6/c0.19.180.142/s148x148/207525_10151164712729050_1253400680_a.jpg", 
        "width": 148, 
        "height": 117, 
        "is_silhouette": false
      }
}

2- SIZE :

To get a user profile picture of a specific size, call

https://graph.facebook.com/USER_ID/picture?type=SIZE

where SIZE should be replaced with one of the words

square
small
normal
large 

depending on the size you want.

This call will return a url to a single image with its size based on your chosen type parameter.

For example:

https://graph.facebook.com/USER_ID/picture?type=small

returns a URL to a small version of the image.

The API only specifies the maximum size for profile images, not the actual size.

Square: maximum width and height of 50px.

Small: maximum width of 50px and a maximum height of 150px.

Normal: maximum width of 100px and a maximum height of 300px.

Large: maximum width of 200px and a maximum height of 600px.

If you call the default USER_ID/picture you get the square type.

share|improve this answer

Here is the code that worked for me!

Assuming that you have a valid session going,

//Get the current users id
$uid = $facebook->getUser();

//create the url
$profile_pic =  "http://graph.facebook.com/".$uid."/picture";

//echo the image out
echo "<img src=\"" . $profile_pic . "\" />";

Thanx goes to Raine, you da man!

share|improve this answer

One very important thing is that like other Graph API request, you won't get the JSON data in response, rather the call returns a HTTP REDIRECT to the URL of the profile pic. So, if you want to fetch the URL, you either need to read the response HTTP header or you can use FQLs.

share|improve this answer

I was having a problem fetching profile photos while using CURL. I thought for a while there was something wrong my implementation of the Facebook API, but I need to add a bit to my CURL called:

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
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.