如何在图形 API 的帮助下不使用 FQL 获取最新评论?

How do i get latest comments without using FQL with the help of graph API?

我正在寻找我创建的 Facebook 页面的最新评论,我可以使用 FQL 获取它,但现在我不想使用 FQL 因为它会在几个月后被弃用,所以我需要通过 Open Graph API、

来完成

有人可以帮我吗?

将不胜感激。

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

/{page-id}/tagged shows the posts that this page was tagged in and the 'posts to page'

...如果您指的是用户发帖。如果你想获取页面帖子的最新评论,你需要先获取带有 /page-id/feed 的最新帖子,然后为每个帖子使用 /post-id/comments 端点。或者更简单:/page-id/feed?fields=comments

如果您需要较旧的条目,则需要使用分页:https://developers.facebook.com/docs/graph-api/using-graph-api/v2.2#paging