Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一堆 facebook 帖子,任何想法如何尽快获得评论最多的帖子?
谢谢你的帮助
使用 FQL:
select post_id, comments.count from stream where post_id in("post_id1", ... , "post_idX") order by comments.count desc limit 1