android_king22
android_king22

Reputation: 779

How to retrieve large profile picture in Facebook?

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

Answers (3)

thaddeusmt
thaddeusmt

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

Bobbi Bennett
Bobbi Bennett

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

Brad
Brad

Reputation: 241

use this:

 http://graph.facebook.com/userid/picture?type=large

Upvotes: 3

Related Questions