开发者

Count Comments for Facebook Posts?

开发者 https://www.devze.com 2023-01-18 22:27 出处:网络
i have a bunch of facebook post\'s, Any ideas how to get the one with the most comments as fast a开发者_如何学Cs possible?

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
0

精彩评论

暂无评论...
验证码 换一张
取 消