Facebook FQL `like` table retuns max 100 rows?
问题 OK, so the title mainly says it all. I want to get the number of likes that I gave to people, for which I am doing a query like: SELECT object_id FROM like WHERE user_id = me() However, for large accounts, this always returns 100, even if I add LIMIT 1000 at the end of the query. If I make the limit lower than 100 (eg. 50), it will only show 50 results, so LIMIT works... Is anyone aware of a limitation that Facebook imposes on the number of returned results in this table? I am mainly waiting