Skip to content Skip to sidebar Skip to footer

Android Facebook Api, Get Diffrent Size Profile Picture

I'm using the relatively new Facebook graph api. I'm getting a list of friends and their profile pics that use the app. I'm not sure how to modify the parameters that I'm sending s

Solution 1:

Requesting /user-id/picture?type=large gives you a larger version of the profile picture.

You can use type in the request you are making like this,

parameters.putString("fields", "picture.type(large),name");

Post a Comment for "Android Facebook Api, Get Diffrent Size Profile Picture"