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 want to show the users profile picture in a imageview. When I try to call the graph-api. It will return the image but the size is too much small like an small icon.can anyone help me that how can I get a large image.

share|improve this question

1 Answer

up vote 4 down vote accepted

The best you could do is request the large profile picture using

http://graph.facebook.com/OBJECT_ID/picture?type=large

For more info, Check the facebook graph api documentation

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)

share|improve this answer
what is the "OBJECT_ID" here. – Nik Oct 19 '11 at 10:45
use the profile id of the user that you want the profile picture of – Sherif elKhatib Oct 19 '11 at 10:49
+1 nice , how to get image with 100*100 size.... – RajaReddy PolamReddy Jan 25 '12 at 9:25
@RajaReddyP actually the options only include (variable height) except for type square where you get a square (50x50)... However if u choose type normal it will probably have a height close to 100.. – Sherif elKhatib Jan 27 '12 at 11:38

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.