Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 312
kakacii Avatar asked Sep 11 '25 06:09

kakacii


1 Answers

You can add custom field list for returning object.

?fields=full_picture

will return full size image.

like image 100
ClockworkOrange Avatar answered Sep 12 '25 23:09

ClockworkOrange