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 get the profile picture. Can I do that with the Facebook SDK, and how?

When I use the Api.get option I get a jsonreader exception.

share|improve this question
Hey David - you should accept the answer (click the checkmark) or add a comment explaining why. – starkos May 26 '11 at 14:31
that's a bit annoying... – iwayneo Jun 23 '11 at 11:47

1 Answer

you can render the photo by just doing

<img src="https://graph.facebook.com/**id**/picture"/>

in your page (with obviously changing the id to the id of the user).

You don't have to retrieve it using the api, but you do have to retrieve the id.

You can also get pictures by their id using /photoid like so /98423808305

more information here...http://developers.facebook.com/docs/api

share|improve this answer
i appreciate your answer. thanks :) – Jeff Apr 15 '11 at 15:01
Could you please mark this as the answer, if it helped. – amonteiro Jun 9 '11 at 13:24

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.