How to obtain a full size profile picture from Facebook ?
http://graph.facebook.com/{ID}/picture?type=large is way to small. I want a bigger size ? Is that possible ? I need a way without FBML because that is soon to end
How to obtain a full size profile picture from Facebook ?
http://graph.facebook.com/{ID}/picture?type=large is way to small. I want a bigger size ? Is that possible ? I need a way without FBML because that is soon to end
You can specify width
and/or height
and Facebook will return an image less than or equal to the given size.
http://graph.facebook.com/{ID}/picture?width={size_in_pixels}&redirect=false
If you have user_photos permission you should be able to get the current profile picture by finding the first image in the Profile Pictures Album. Here is some sample code from Kilian Valkhof.