in Facebook API /me/events fails to get events that you have not responded to. why? -


in facebook api /me/events fails events have not responded to. why?

only events have clicked: maybe/no/yes show in graph api. how can these events have not responded to?

you can retrieve information events user has been invited to, not responded to, using fql query this:

select eid,name,description,start_time,end_time,venue      event      eid      in (         select eid              event_member              uid=me()              , rsvp_status='not_replied'        ) 

Comments

Popular posts from this blog

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -