Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I encounter the following issue in my Java Android app:

When I create a comment for a post (send a request to FB) I get a successful response (I get the ID for a newly created comment for the post). Good so far.

But if then I immediately call for comments count:

"SELECT comments.count FROM stream WHERE post_id = '" + postId + "'"

then instead of getting expected 1 (assuming it was the first comment), I get 0 (FB tells there is no comments at all). My question is why this happens? The issue goes away if I wait for some time. E.g., if I wait for about a minute, then FB starts returning expected comments count.

It looks like (just my guess) that FB has no sufficient time to update its indexes (I really believe they use indexing). So I get an obsolete/cached resutls. I wonder is there any means to force getting the freshest data (bypassing any caches on FB side)?

A clarification: I know how to get a list of comments. And I could use it for getting count just by getting size from the returned collection. But that is not my goal. Because the posted above FQL request should be in times cheaper/faster.

share|improve this question

1 Answer

Have you tried using FB API for this. Comments can be fetched as following.

FB.api("/" + PostId + "/comments", function(){//do your processing})

Hope this helps.

Thanks

Kaushik

share|improve this answer
I am not asking about the way to get a list of comments - that is not a problem and works fine. What I'm asking is related to getting the count of comments for a post. There is API for that, but it returns a wrong count. Why? And how to force it returning correct (freshest) value? – Arhimed Jul 31 '12 at 13:42
The FB API call that I mentioned will give JSON Array. Length of that array can be used as number of comments. – Purusottam Kaushik Aug 1 '12 at 9:15
thanks. Surely I understand that, but that is not what my question is about. – Arhimed Aug 1 '12 at 10:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.