Comment Count API Facebook Restfb Java

174 Views Asked by At

I've been programming a lot with restfb, but I'm not able to do a counting of comments, only the comments without the answers, the image can better illustrate.enter image description here

Example post comment facebook

My code

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());

Out code comments count

But I need to get only actual comments from the publication, in this example 57 comments.

In https://developers.facebook.com/docs/graph-api/reference/v3.2/object/comments I have some references of filter - toplevel but without success.

I also tested with Comment instead of Post but without success.

How can I get 57 posts in a post?

1

There are 1 best solutions below

1
On

Please try the following code:

Post post = clienteFacebook.fetchObject(idPostagem,
      Post.class,Parameter.with("fields", "comments.limit(0).summary(1).filter(toplevel)"));

System.out.println("Comments count: " + post.getCommentsCount());

As you can see the filter is part of the fields parameter. But the strange thing is, toplevel is the default filter if no filter is provided. So maybe it is something different.

Maybe you can get in touch with us (RestFB Team) directly, so we can help a bit more in depth ;)