I want to select if a specific user (ie. the user logged in) is attending at a specific event. Because I don't want to use Graph API for getting always all the events a user is attending, I tried FQL SELECT rsvp_status from event_member where eid = {0} and uid = {1}, but it returned nothing. But when I tried this information getting from Graph API, I succeeded.
One thing came to my mind, maybe I gave access_token in a wrong way to the FB.Data.query function, because I only saw examples in blogs and articles, not on FB documentation.
Any help appreciated,
Tamas