如何在Facebook中获取我的粉丝页面的所有Feed

时间:2011-11-22 12:15:40

标签: facebook-graph-api

如何获取粉丝页面的所有Feed? 我使用这个网址使用图形api https://graph.facebook.com/mypagename/feed?until=today&access_token= $的access_token

$status_data= file_get_contents("https://graph.facebook.com/mypagename/feed?until=today&access_token=$access_token");
$status = json_decode($status_data,true);

access_token有效。一切正常。我也获得了许可。(read_stream) 但它只返回50到52个帖子。

我想退回所有帖子。

1 个答案:

答案 0 :(得分:1)

您是否尝试过调用:

https://graph.facebook.com/mypagename/feed?access_token=$access_token

API应返回固定的默认设置(最近25个帖子)。但是,它还应该返回一个paging对象,允许您访问下一个25:

 "paging": {
"previous": "https://graph.facebook.com/mypagename/feed?format=json&limit=25&since=1317858935", 
"next": "https://graph.facebook.com/mypagename/feed?format=json&limit=25&until=1315842409"

您的代码可以自动解析分页链接,直到最后检索所有帖子。