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?
|
|
|
Simply fetch the data through this url: http://graph.facebook.com/sarfraz.anees/picture Replace You can use the PHP's Resource: http://developers.facebook.com/docs/api Note: In php.ini, you need to make sure that openssl extension is enabled to use the |
|||||||||||||||||||
|
|
To show: 50x50 px:
width: 200px
To save:
Where $fid is your user id (or nickname) in facebook.. |
|||||||
|
|
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:
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,
returns
END UPDATE To get a user's profile picture, call
where USER_ID can be the user id number or the user name To get a user profile picture of a specific size, call
where SIZE should be replaced with one of the words
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:
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:
Small
Normal
Large
If you call the default USER_ID/picture you get the square type. CLARIFICATION If you call (as per above example)
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:
like so:
|
|||||||||||
|
|
There is way to do that ;) Thanks to "http://it.toolbox.com/wiki/index.php/Use_curl_from_PHP_-_processing_response_headers"
|
|||
|
|
|
To get the image URL, NOT binary content:
|
||||
|
|
|
ONE WAY TO USE THE CODE GAMLET POSTED IN HIS ANSWER: save it as curl.php then in your file
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. |
|||
|
|
|
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). |
||||
|
|
|
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.
read this article: and here is some IDs to downlaod: |
|||
|
|
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.
