简体   繁体   English

Facebook opengraph-从Facebook组获取最新的5条更新帖子?

[英]Facebook opengraph - get latest 5 updated posts from Facebook group?

Is it possible and how to get latest 5 updated posts from Facebook group wall? 是否可以以及如何从Facebook群组墙获取最新的5条更新帖子?

When i run https://graph.facebook.com/GROUP_ID/feed?access_token=MY_TOKEN&limit=5 im receiving latest 5 published posts. 当我运行https://graph.facebook.com/GROUP_ID/feed?access_token=MY_TOKEN&limit=5即时消息时,我会收到最新的5条发布的帖子。

In Facebook documentation Im unable to find if there is some URL parameter for getting latest updated posts.. 在Facebook文档中,我无法找到是否有用于获取最新更新帖子的URL参数。

You can do this with the FQL stream table : 您可以使用FQL 流表执行此操作:

https://graph.facebook.com/fql?q=
  SELECT message, attachment, actor_id, created_time, updated_time FROM stream
    WHERE source_id = GROUP_ID ORDER BY updated_time DESC

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM