Hi there,
i have a bunch of facebook post's, Any ideas how to get the one with the most comments as fast as possible?
thanks for helping
Hi there,
i have a bunch of facebook post's, Any ideas how to get the one with the most comments as fast as 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