Retrieve /feed or /tagged on facebook community pages

206 views Asked by At

I am using FB graph API to fetch people's posts on community pages, such as this

I used the graph API explorer with url

However, if I try the /tagged url with a non community page such as this, I can retrieve people's posts on the page.

Do anyone know why /tagged only work in non community page?

Thank you!

1

There are 1 answers

0
Javier de la Cueva On

Not really sure what do you mean with "Community pages" but this is a problem of permissions. Quoting the docs:

/{page-id}/tagged shows the posts to this page. It will also show some posts in which the page has been tagged. It will only show tagged posts where the person who made the post have installed the same app.

Link to the docs: https://developers.facebook.com/docs/graph-api/reference/v2.3/page/feed

So probably you do not have permissions to see post for that particular page.

I hope it helps.