When I execute the following FQL query
SELECT uid, rsvp_status FROM event_member WHERE uid = me()
I get a list of events I'm attending. When I execute either of the following FQL querys
SELECT uid, rsvp_status FROM event_member WHERE uid = "{my uid written out}"
SELECT uid, rsvp_status FROM event_member WHERE uid IN ("{my uid written out}")
I get the following empty object
{"data": []}
I want to query for my friends public events using. When I trying to do this using either of the following queries
SELECT uid, rsvp_status FROM event_member WHERE uid = "{my friends uid written out}"
SELECT uid, rsvp_status FROM event_member WHERE uid IN ("{my friends uid written out}")
I once again get the following empty object
{"data": []}
Any suggestions?