Facebook API: Get comment likes via FQL
I am looking for a way to retrieve the list of users that liked a comment via the facebook API.
I am particularly interested in doi开发者_如何学Cng it via FQL.
I finally found the answer myself.
It is possible to query the "like" table using the comment "xid" as a "post_id".
SELECT post_id, user_id FROM like WHERE post_id = <comment xid>
精彩评论