Filter JSON of Facebook Graph Api Feed

4

The JSON that the Graph API returns from a Feed of a page using the address "graph.facebook.com/ID / feed? access_token = _ACCESS_TOKEN_ "displays the full Feed , but I only wanted the posts made by the page itself. How do I filter?

    
asked by anonymous 28.02.2014 / 05:10

1 answer

3

With /{page-id}/posts will only show posts that have been published per page.

For more details see the documentation for this item here .

    
28.02.2014 / 13:19