我使用RestFB从facebook页面获取帖子。问题是我只想要页面的最新帖子,比如上个月的帖子。使用我的代码,我得到了所有的历史记录,这需要花费很多时间。 我怎么做?我没看过关于"时间戳"参数。我尝试过limit参数没有得到好结果。
我的代码是:
public static JSONArray GetPostsFromPage(String idpage) {
String texto, idpost;
Date timestamp;
JSONArray array = new JSONArray();
JSONObject objeto;
Connection<Post> postFeed = fbClient.fetchConnection(idpage + "/feed", Post.class, Parameter.with("limit", 50));
for (List<Post> postPage : postFeed) {
for (Post aPost : postPage) {
objeto = new JSONObject();
idpost = aPost.getId();
texto = aPost.getMessage();
timestamp = aPost.getCreatedTime();
objeto.put("id", idpost);
objeto.put("texto", texto);
objeto.put("timestamp", timestamp);
array.put(objeto);
}
}
return array;
}
任何想法都会受到欢迎。谢谢。
答案 0 :(得分:1)
我的第一个建议: 在这里检查基于时间的分页: https://developers.facebook.com/docs/graph-api/using-graph-api
您只需将Parameter.with("since", "<timestamp>")
添加到fetchConnection调用。
第二个建议: 将循环保留在已保存的时间戳上。您只需保存最新帖子的TS,并在下一轮询迭代时停止该TS上的循环。