Facebook – Using facebook graph api how to get news feed with large picture size if the feed type is photo

facebookfacebook-graph-api

Using facebook graph api get News feed:
https://graph.facebook.com/me/home?access_token=

The picture field it returns is all in smallest size, like picture": "https://fbcdn-photos-b-a.akamaihd.net/hphotos-ak-ash3/xxxxxx4_s.jpg:

Is there any parameter that I can use to retrieve larger thumbnails? Any way to do this?

Best Answer

You can add custom field list for returning object.

?fields=full_picture

will return full size image.

Related Topic