I am making a FQL query to get the user's News Feed. I am missing some information. E.g. when a user likes a page, I don't know what pages the user has liked and when a user is attending an event I don't know which event the user is attending.
Can anyone tell me how to get this information?
This is my query:
SELECT post_id, actor_id, attachment, permalink, tagged_ids, message, likes, created_time, filter_key, type, target_id FROM stream WHERE filter_key IN (SELECT filter_key FROM stream_filter WHERE uid = me() AND type = 'newsfeed') AND is_hidden = 0 ORDER BY created_time DESC