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'm working on a CMS that fetches a user's profile image from their facebook url (ie, http://facebook.com/users_unique_url). How can I accomplish this? Is there a faceboook API call that fetches a user's profile image url without the user needing to Allow the application?

share|improve this question

8 Answers

up vote 170 down vote accepted

Simply fetch the data through this url:

http://graph.facebook.com/sarfraz.anees/picture

Replace sarfraz.anees (my name) with name of the user you want to get the photo of.

You can use the PHP's file_get_contents function to read that url and process the retrieved data.

Resource:

http://developers.facebook.com/docs/api

Note: In php.ini, you need to make sure that openssl extension is enabled to use thefile_get_contents function of PHP to read that url.

share|improve this answer
Thanks! That is exactly what I was looking for! – John Himmelman May 12 '10 at 17:20
22  
Looking through that page further, another useful thing might be the ?type=large querystring you can add on. Props for coming up with a totally much better answer than the screen-scraping I was typing up, BTW :). – Domenic May 12 '10 at 17:21
1  
@John Himmelman: You are welcome :) – Sarfraz May 12 '10 at 17:22
2  
@Domenic: Yup, the new graph API looks to be cool and promising :) – Sarfraz May 12 '10 at 17:22
7  
It should be emphasized, some users do NOT have a username set for their FB account. When this is the case, and you are trying to implement this answer, you will receive FB's default profile picture, the question mark. To easily avoid this problem, use the user's FB ID instead. – Josh Feb 14 '12 at 20:01
show 4 more comments

To show:

50x50 px:

<img src="https://graph.facebook.com/<?= $fid ?>/picture">

width: 200px

<img src="https://graph.facebook.com/<?= $fid ?>/picture?type=large">

To save:

$img = file_get_contents('https://graph.facebook.com/'.$fid.'/picture?type=large');
$file = dirname(__file__).'/avatar/'.$fid.'.jpg';
file_put_contents($file, $img);

Where $fid is your user id (or nickname) in facebook..

share|improve this answer
Easy Peezy! Saved me a few hours. Gratzi! – Michael Jasper Mar 1 '11 at 14:35
2  
Here's more info on 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), normal (100 pixels wide, variable height), and large (about 200 pixels wide, variable height)" Via Graph API on Facebook – dbme Jun 10 '11 at 20:37

UPDATE:

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

https://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,

https://graph.facebook.com/redbull/picture?width=140&height=110

returns

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

END UPDATE

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 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.

CLARIFICATION

If you call (as per above example)

https://graph.facebook.com/redbull/picture?width=140&height=110

it will return a Json response if you're using one of the Facebook SDKs request methods. Otherwise it will return the image itself. To always retrieve the Json, add:

&redirect=false

like so:

https://graph.facebook.com/redbull/picture?width=140&height=110&redirect=false
share|improve this answer
Great explanation, but the return value of url you gave ('graph.facebook.com/redbull/…) responds with image url in the location header ('Location: fbcdn-profile-a.akamaihd.net/hprofile-ak-ash4/c0.19.180.142/…). not as a JSON like { "data": { "url": "fbcdn-profile-a.akamaihd.net/hprofile-ak-ash4/c0.19.180.142/…;, "width": 148, "height": 117, "is_silhouette": false } } – Gökhan Barış Aker Nov 22 '12 at 12:11
I still get the same response as in my answer. You can try it out in the Graph Explorer on Facebook Developers at developers.facebook.com/tools/explorer. Enter 'redbull/picture?width=140&height=110' and see the response. My answer assumes you're calling this using one of the Facebook SDKs API / request methods, which will return a JSON response. – Gunnar Karlsson Dec 31 '12 at 1:44
@GunnarKarlsson you are missing the &redirect=false to return the JSON data instead of redirect to the image – andrewtweber Mar 4 at 5:43
@andrewtweber thanks a lot. I've added a clarification to the answer. – Gunnar Karlsson Mar 4 at 7:22
nice one... much helped me... i was feeling as new to fb sdk but u made me feel comfortable... – anuj arora Mar 14 at 9:55

There is way to do that ;)

Thanks to "http://it.toolbox.com/wiki/index.php/Use_curl_from_PHP_-_processing_response_headers"

/**
 * Facebook user photo downloader 
 */

class sfFacebookPhoto {

    private $useragent = 'Loximi sfFacebookPhoto PHP5 (curl)';
    private $curl = null;
    private $response_meta_info = array();
    private $header = array(
            "Accept-Encoding: gzip,deflate",
            "Accept-Charset: utf-8;q=0.7,*;q=0.7",
            "Connection: close"
        );

    public function __construct() {
        $this->curl = curl_init();
        register_shutdown_function(array($this, 'shutdown'));
    }

    /**
     * Get the real url for picture to use after
     */
    public function getRealUrl($photoLink) {            
        curl_setopt($this->curl, CURLOPT_HTTPHEADER, $this->header);
        curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, false);
        curl_setopt($this->curl, CURLOPT_HEADER, false);
        curl_setopt($this->curl, CURLOPT_USERAGENT, $this->useragent);
        curl_setopt($this->curl, CURLOPT_CONNECTTIMEOUT, 10);
        curl_setopt($this->curl, CURLOPT_TIMEOUT, 15);
        curl_setopt($this->curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
        curl_setopt($this->curl, CURLOPT_URL, $photoLink);
        //this assumes your code is into a class method, and uses $this->readHeader as the callback //function
        curl_setopt($this->curl, CURLOPT_HEADERFUNCTION, array(&$this,'readHeader'));
        $response = curl_exec($this->curl);
        if(!curl_errno($this->curl)) {
            $info = curl_getinfo($this->curl);
            var_dump($info);
             if($info["http_code"] == 302) {
                 $headers = $this->getHeaders();
                 if(isset($headers['fileUrl'])) {
                     return $headers['fileUrl'];
                 }
             }
        }
        return false;
    }


    /**
     * Download facebook user photo
     * 
     */
    public function download($fileName) {
        curl_setopt($this->curl, CURLOPT_HTTPHEADER, $this->header);
        curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($this->curl, CURLOPT_HEADER, false);
        curl_setopt($this->curl, CURLOPT_USERAGENT, $this->useragent);
        curl_setopt($this->curl, CURLOPT_CONNECTTIMEOUT, 10);
        curl_setopt($this->curl, CURLOPT_TIMEOUT, 15);
        curl_setopt($this->curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
        curl_setopt($this->curl, CURLOPT_URL, $fileName);
        $response = curl_exec($this->curl);
        $return = false;
        if(!curl_errno($this->curl)) {
            $parts = explode('.',$fileName);
            $ext = array_pop($parts);
            $return = sfConfig::get('sf_upload_dir') . '/tmp/' . uniqid('fbphoto') . '.' . $ext;
            file_put_contents($return, $response);
        }
        return $return;
    }

    /**
 * CURL callback function for reading and processing headers
 * Override this for your needs
 *
 * @param object $ch
 * @param string $header
 * @return integer
 */
private function readHeader($ch, $header) {
        //extracting example data: filename from header field Content-Disposition
        $filename = $this->extractCustomHeader('Location: ', '\n', $header);
        if ($filename) {
            $this->response_meta_info['fileUrl'] = trim($filename);
        }
        return strlen($header);
}

    private function extractCustomHeader($start,$end,$header) {
    $pattern = '/'. $start .'(.*?)'. $end .'/';
    if (preg_match($pattern, $header, $result)) {
        return $result[1];
    } else {
        return false;
    }
}

    public function getHeaders() {
        return $this->response_meta_info;
}

    /**
     * Cleanup resources
     */
    public function shutdown() {
        if($this->curl) {
            curl_close($this->curl);
        }
    }


}
share|improve this answer

To get the image URL, NOT binary content:

$url = "http://graph.facebook.com/".$fbId."/picture?type=".$size;

$headers = get_headers($url, 1);

if( isset($headers['Location']) )
    echo $headers['Location']; // string
else
    echo "ERROR";
share|improve this answer

ONE WAY TO USE THE CODE GAMLET POSTED IN HIS ANSWER:

save it as curl.php

then in your file

require 'curl.php';

    $photo="https://graph.facebook.com/me/picture?access_token=".$session['access_token'];

    $sample = new sfFacebookPhoto;

    $thephotoURL=$sample->getRealUrl($photo);

    echo $thephotoURL;

i thought i would post this, because it took me a bit of time to figure out the particulars... even though profile pictures are public, you still need to have an access token in there to get it when you curl it.

share|improve this answer

This might offer another form of solution.

http://markuzweb.blogspot.com/2010/09/grab-picture-of-facebook-graph-object.html

Use the code in the tutorial along with the Facebook's Graph API and its PHP SDK library.

...and try not to use file_get_contents (unless you're ready to face the consequences - see file_get_contents vs curl).

share|improve this answer

I was thinking - maybe ID will be a useful tool. Every time a user creates new accouts it should get higher ID. I googled and found that there is a method to estimate the accout creation date by ID and Massoud Seifi from metadatascience.com gathered some good data about it. enter image description here

read this article:

http://metadatascience.com/2013/03/11/inferring-facebook-account-creation-date-from-facebook-user-id/

and here is some IDs to downlaod:

http://metadatascience.com/2013/03/14/lookup-table-for-inferring-facebook-account-creation-date-from-facebook-user-id/

share|improve this answer

protected by Community Apr 8 '12 at 2:31

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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