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

后端 未结 7 1740
说谎
说谎 2020-12-13 14:23

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\": \"h

7条回答
  •  独厮守ぢ
    2020-12-13 14:41

    Along with picture field, there is an object_id field. Put this id in below url:

    https://graph.facebook.com/{object_id}/picture

    This will return actual size image. Or you can write this for different image sizes.

    https://graph.facebook.com/{object_id}/picture?type=normal

    Where type can be : thumbnail, normal, album.

提交回复
热议问题