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.f
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 width
and height
, for example
https://graph.facebook.com/1207059/picture?width=121&height=100
So in your case
https://graph.facebook.com/oleg.dats/picture?width=200&height=200
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/]