I am trying to fetch all the likes that a user has done. I am using the following fql queries to fetch the likes.
SELECT object_type, post_id, object_id FROM like WHERE user_id=me()
I am passing the user's access token along with this query.
Some of the user's like activity is not reflecting in the like table. Did some tests and found out that the missing ones are the likes on posts of some specific friends.
I haven't yet figured out if there are any other like activities of the user that is missing from the like table.
What are the rules by which a like activity of a user is recorded in the like table?