我一直在用restfb进行很多编程,但我无法计算评论,只有没有答案的评论,图像可以更好地说明。在此处输入图像描述
我的代码
Post post = clienteFacebook.fetchObject(idPostagem,
Post.class,
Parameter.with("fields", "comments.limit(0).summary(true)"),
Parameter.with("filter", "toplevel"));
System.out.println("Comments count: " + post.getCommentsCount());
但我只需要从出版物中获取实际评论,在本例中为 57 条评论。
在https://developers.facebook.com/docs/graph-api/reference/v3.2/object/comments我有一些过滤器的引用 - 顶级但没有成功。
我还使用评论而不是发布进行了测试,但没有成功。
如何在一个帖子中获得 57 个帖子?