Reputation: 779
I am using this url to retrieve Facebook profile picture.
http://graph.facebook.com/"+ Id +"/picture?=large"
The thing is, its still small. Its not showing up large. How would I get the large image to show up?
Upvotes: 1
Views: 7628
Reputation: 15600
You can also do this as a regular API request using the new API "field expansion" syntax.
Like so:
https://graph.facebook.com/____OBJECT_ID____?fields=picture.type(large)
Upvotes: 3
Reputation: 1646
http://graph.facebook.com/1222530914/picture?type=large
You need ?type=
it is listed in the facebook graph api under user
Upvotes: 9