How to read facebook public time limit?

I need to read the timeline feed on public facebook pages. I used the syntax to get the feed from the timeline:

https://graph.facebook.com/v2.3/DoveIndia?fields=id,name,picture,feed

      

This works well and returns a feed when there is no "Posts per Page" on the facebook page. When a page has Posts Per Page, it only returns all posted posts on non-timeline pages.

Sample Request (GUI API Tools):

https://graph.facebook.com/v2.3/jeep?fields=id,name,picture,feed

      

Please tell me how to read the timeline feed?

Thanks Sameek

+3


source to share


2 answers


/ {page-id} / posts only shows posts that have been posted on this page.



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

+2


source


Posting messages (including status updates) and links posted by that person or others in this profile. There are other edges that provide filtered versions of this edge:

/{user-id}/posts shows only the posts that were published by this person.
/{user-id}/tagged shows only the posts that this person was tagged in.

      



All of these derived edges share the same reading structure, however / feed should be used for all publishing purposes.

0


source







All Articles