João Soares
João Soares

Reputation: 43

Facebook Graph Api returns empty array on gorup feed call

I'm trying to get the feed from a closed group which I am an administrator using facebook Graph Explorer API, so I followed the instructions in this documentation

But the response json is just an empty array like this

{"data": []}

Here is my request image

First I gave the token only the permission described in the documentation, then i gave all permissons and yet it doesn't work

Upvotes: 1

Views: 617

Answers (1)

C3roe
C3roe

Reputation: 96412

https://developers.facebook.com/docs/graph-api/changelog/breaking-changes#groups-4-4:

Groups API
App Review — All apps, including formerly approved apps, must undergo App Review in order to gain access to the API.

Until you submit your app for review and get it approved, this will only work if you put your app in “dev” mode. As soon as you set it “live”, you will only get an empty result if you did not get your app reviewed yet.

Upvotes: 1

Related Questions