I\'m doing a Facebook Graph API call for \"me/home\" to get the user\'s news feed. As everyone knows, the URL you get in the \"picture\" field is a low resolution photo that doe
me/home
- graph api has some a field called "object_id" and "type"
. If the type is "photo" then you will have this object_id value. By Using this object id and make another graph api call then you will get an objecty called "images"
. This object has several options ( different sizes ).
OR
Use object id like below and get a album sized version of a photo. and the supported types for this call are "thumbnail, normal, album".
https://graph.facebook.com/{object-id-from-feed}/picture?type=normal
and also checkout this link under Examples of Supported Objects section.