Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting full-size profile picture

Is there anyway to get the full-size profile picture using any facebook api?

http://graph.facebook.com/{ID}/picture?type=large is way to small.

Thanks :)

like image 273
Richard Avatar asked Dec 20 '11 11:12

Richard


1 Answers

Set either the width or height to some arbitrarily large number:

https://graph.facebook.com/username_or_id/picture?width=9999

If the width and height are the same number, the photo is cropped to a square.

like image 72
Lri Avatar answered Sep 21 '22 06:09

Lri