如何阅读 Facebook 中的 public 时间线提要?

how to read public timeline feed in facebook?

我需要阅读 Facebook public 页面中的时间线提要。我使用语法从时间轴获取提要:

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

当 facebook 页面没有 "Posts To Page" 时,它和 returns 提要很好用。 当页面有 "Posts To Page" 时,它只有 returns 页面上所有发布的消息,而不是时间线提要。

请求示例(图表 API 资源管理器工具):

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

请建议如何从时间轴读取提要?

谢谢 萨米克

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

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

此人或其他人在此人个人资料上发布的帖子(包括状态更新)和链接的供稿。还有其他边缘提供此边缘的过滤版本:

/{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.

所有这些衍生边缘共享完全相同的阅读结构,但是 /feed 应该用于所有发布目的。