How do I retrieve photos from a Facebook group using the GraphAPI?

后端 未结 5 1735
滥情空心
滥情空心 2021-02-02 13:36

I would like to retrieve photos from a facebook group using the GraphAPI. Based on FB Docs I don\'t see any connections to photos. I would like to get the photos and the users w

5条回答
  •  面向向阳花
    2021-02-02 14:16

    I wish I had found a more direct method, but this appears to have promise:

    get /me/groups or /me?fields=groups to get the groups ids.

    From that, get {group_id}/feed?type=photo This returns just the photos from the feed, but all you really get (toward this goal) is the photo's id (returned as object_id).

    Then for each photo you can get /{object_id} which returns all the links to the various sizes of the image.

    I did this research in Facebook Graph Explorer, so keep that in mind as you try to implement it.

    Rob

提交回复
热议问题