Facebook Page是我们学习东西的有用渠道。但我在按日期过滤帖子时遇到问题:在指定日期之前获取所有帖子。旧帖子浮出水面。
是否有任何 Facebook API 支持执行此任务?
Facebook Page是我们学习东西的有用渠道。但我在按日期过滤帖子时遇到问题:在指定日期之前获取所有帖子。旧帖子浮出水面。
是否有任何 Facebook API 支持执行此任务?
您可以使用参数since
并until
与strtotime结合使用
strtotime();
参考: http: //php.net/manual/en/function.strtotime.php
使用 Graph API Explorer 的使用示例。
// example will return first 20 posts made between 15th of March, and 5th of April 2013.
example.com/feed?since=15+march+2013&until=5+april+2013&limit=20
现场示例:
附加信息:
limit=