我的目的是获取所有过去的帖子。我创建了一个 Facebook 应用程序。执行此代码时,我已使用正确的 appid 和密码正确登录。
function loadPage() { // calls the first batch of records
FB.api("/me/feed",{},function(response) { procBatch(response) } );
}
function procBatch(dat) { // handle this batch, request the next batch
for ( i = 0; i < dat.data.length; i++ ) {
procRow(dat.data[i]); // process this row
}
if ( typeof(dat.paging) != 'undefined' ) {
FB.api(dat.paging.next, {}, function(response){ procBatch(dat); } );
} else {
alert("No more records expected");
}
}
不幸的是,这只需要我大约六个月的时间。
有没有可能再往前走?
提前致谢。