I'm trying to query for a user's facebook friends events using FQL. I've used the following query but haven't been succesful so far:
SELECT eid
FROM event
WHERE eid IN
(SELECT eid
FROM event_member
WHERE UID IN
(SELECT uid2
FROM friend
WHERE uid1 = Me()))
Any tip? Thanks.
If this is even possible, you will have to authenticate with a specific permission to access your friends events. Search for "facebook api permissions"