Facebook profile picture is public available.
For example https://graph.facebook.com/oleg.dats/picture It’s square but to small
To get larger picture https://graph.facebook.com/oleg.dats/picture?type=large But this one is not square.
Is there way to get square profile picture (200px/200px) ?
Facebook profile picture is public available. For example https://graph.facebook.com/oleg.dats/picture It’s square but to small
Share
You will need to post process it yourself. The sizes are
Announced as of Wednesday, August 22, 2012,
You can query for alternate sizes via Graph API using
widthandheight, for exampleSo in your case
Or in FQL
SELECT url, real_width, real_height FROM profile_pic WHERE id=100000896260238 AND width=200 AND height=200[Source – http://developers.facebook.com/blog/post/2012/08/22/platform-updates–operation-developer-love/]