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 am developing a script where I update the name and profile picture of users every other week or so (to stay updated with their information).

I need to figure out how to use Facebook's API to get the name and profile picture of a user using their facebook ID.

I'm using PHP.

Thanks in advance!

share|improve this question

1 Answer

up vote 1 down vote accepted

You can use the /userid call and filter for name and picture.

https://graph.facebook.com/the_user_id?fields=name,picture

Returns

{
   "name": "First LastingName",
   "id": "the_user_id",
   "picture": "The image.jpg"
}

If you are using the PHP SDK you can do

$user = $facebook->api('/the_user_id');
$name = $user['name'];
$picture = $user['picture'];

For more information on user see http://developers.facebook.com/docs/reference/api/user/

share|improve this answer
Thank you so much! – David May 24 '12 at 18:17

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.