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.

Rephrased, is it possible to use the Facebook Open Graph API to display a user's full name and profile picture to other site members who are not Facebook friends with the user?

share|improve this question

1 Answer

up vote 0 down vote accepted

Yes; users' first name, last name and profile picture are publicly available. You can retrieve them from the Graph API (along with other information they have made available) by calling:

https://graph.facebook.com/[user_id_or_name]

This will return a JSON string containing the relevant information.

Enjoy! :)

share|improve this answer
Wow, thank's for the quick answer - much appreciated! – Julien LaPointe Dec 15 '10 at 16:15

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.