Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to read public timeline feed in facebook?

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

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

It works well and returns the feed,when facebook page not have "Posts To Page". When Page have "Posts To Page",it only returns all posted messages on page not timeline feeds.

Example of a request(Graph API Explorer tools):

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

Please suggest how can read feed from timelines?

Thanks Sameek

like image 233
Sameek Mishra Avatar asked Jan 29 '26 16:01

Sameek Mishra


1 Answers

/{page-id}/posts shows only the posts that were published by this page.

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

like image 77
andyrandy Avatar answered Feb 01 '26 14:02

andyrandy