0

有没有办法通过 FB API(应用程序)从我们的粉丝页面用户(我们的粉丝在我们的粉丝页面墙上发布的内容)获取帖子?

我一直在寻找一段时间,但找不到任何有用的资源。谢谢。

4

2 回答 2

0

要在您的主页墙上获取其他人的帖子,您可以使用Stream FQL,例如,

select message,actor_id from stream
where source_id=Your+Page_ID and actor_id != source_id

这将检索由您以外的人撰写的页面墙上的帖子。

于 2013-05-16T07:09:43.320 回答
0

检查PAGE_ID/feed/连接。帖子和评论应该在那里,你只需要过滤它。

https://developers.facebook.com/docs/reference/api/page/

示例尝试 Python 页面 - https://developers.facebook.com/tools/explorer?method=GET&path=pythonlang%2Ffeed

于 2013-05-15T22:56:37.883 回答