Is there a way to use FQL to get the XID of all comments posted on any page associated with a specific Facebook application identifier?
The documents listed for FQL in the comments_info table at this address seem to suggest that this is possible:
http://developers.facebook.com/docs/reference/fql/comments_info/
If I try to execute the following query, it does not return any results.
SELECT xid FROM comments_info WHERE app_id = {MY_APP_ID}
I want to use this to find the most popular pages without individually checking each URL to determine which one has the most posts.
source share