Facebook Graph API Explorer 获取页面特定的页面提要
Facebook Graph API Explorer get page specific page feeds
我使用 Graph API Explorer 从我的 Facebook 页面获取一些提要。所以我有这样的东西:
GET ->/v2.2/my_page_id/feed
其中 returns 我页面上的所有供稿。此时一切都很好,问题是它 returns 不仅是我发布的帖子,还有其他人在我页面上发布的帖子。
我基本上想要的是仅获取位于中心栏的我的帖子,而不是我页面上位于左栏的其他人的帖子。
如果我试试这个:
GET ->/v2.2/my_page_id/feed?fields=from{id}
我只会得到发布提要的用户 ID,所以我想我必须放置某种 where 子句,例如:
/where?from{id}=my_user_id
有人可以帮我解决这个问题吗?这看起来很简单,但我花了很多时间来研究这个 where clause
但运气不佳。
你应该使用
GET /{page_id}/posts
而不是
GET /{page_id}/feed
如果您只想查看 Page 自己的帖子。
见
/{page-id}/posts
shows only the posts that were published by this page.
我使用 Graph API Explorer 从我的 Facebook 页面获取一些提要。所以我有这样的东西:
GET ->/v2.2/my_page_id/feed
其中 returns 我页面上的所有供稿。此时一切都很好,问题是它 returns 不仅是我发布的帖子,还有其他人在我页面上发布的帖子。
我基本上想要的是仅获取位于中心栏的我的帖子,而不是我页面上位于左栏的其他人的帖子。
如果我试试这个:
GET ->/v2.2/my_page_id/feed?fields=from{id}
我只会得到发布提要的用户 ID,所以我想我必须放置某种 where 子句,例如:
/where?from{id}=my_user_id
有人可以帮我解决这个问题吗?这看起来很简单,但我花了很多时间来研究这个 where clause
但运气不佳。
你应该使用
GET /{page_id}/posts
而不是
GET /{page_id}/feed
如果您只想查看 Page 自己的帖子。
见
/{page-id}/posts
shows only the posts that were published by this page.