如何检索Facebook页面的所有提要

时间:2015-12-17 11:02:48

标签: node.js facebook-graph-api

在检索Facebook页面的Feed时,我们最多可以获得100个Feed。 我们如何使用图API和node.js解析所有可用的feed? 如果它是递归的,我们可以在获得响应时测试分页和下一个元素。

例如,此代码仅撤消最后两个Feed页面。但是我想要检索所有的Feed。

// note: you might want to prevent the callback hell :)
graph.get('likes', {limit: 2, access_token: "foobar"}, function(err, res) {
  if(res.paging && res.paging.next) {
    graph.get(res.paging.next, function(err, res) {
      // page 2
    });
  }
});

1 个答案:

答案 0 :(得分:0)

如果你想获得数据。您必须在图浏览器上设置user_post权限。

FB.api(
  '/mosaiquefm/feed',
  'GET',
  {},
  function(response) 
  {
       // here print response. this response according to screenshot.
  }
);