Count Comments for Facebook Posts?
i have a bunch of facebook post's, Any ideas how to get the one with the most comments as fast a开发者_如何学Cs possible?
thanks for helping
Using FQL:
select post_id, comments.count from stream where post_id in("post_id1", ... , "post_idX") order by comments.count desc limit 1
精彩评论