我希望使用FQL找到旧的Facebook帖子。我试过这个:
SELECT actor_id, message, created_time FROM stream
WHERE source_id = me() and (created_time>date1 and created_time<date2)
但即使date1
和date2
之间的时间间隔仅为一天,也只会返回一小部分帖子。因此,我尝试将它们分块,但即使每隔1小时,它仍然不能完全获得所有内容,并且我快速接近流请求的600查询限制。
有更好的方法吗?
答案 0 :(得分:1)
您是否尝试过使用Graph API?这样的事情可以帮助你解决页面问题: https://graph.facebook.com/PAGE_ID/feed?value=1&base_amount=1&limit=25&until=1332873234
要查询自己的帖子,网址有点不同: https://graph.facebook.com/USER_ID/home?value=1&base_amount=1&limit=25&since=1344348794“,
您可以在此处测试图表API查询: https://developers.facebook.com/tools/explorer/?method=GET&path=40796308305%2Ffeed