Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like show all members of this facebook event, who are in status "maybe". Graph Api with FQL query get me NULL, but official facebook event has (1,898) "maybe" members. Where is mistake?

Official FB event:

https://www.facebook.com/events/175525179214102/

FQL query via Graph API Explorer

https://developers.facebook.com/tools/explorer?method=GET&path=fql%3Fq%3DSELECT%20uid%20FROM%20event_member%20WHERE%20eid%20%3D%20175525179214102%20AND%20rsvp_status%20%3D%20'maybe'

SELECT uid FROM event_member WHERE eid = 175525179214102 AND rsvp_status = 'maybe'

Return:

{
  "data": [
  ]
}

Thank you for all answers

share|improve this question

1 Answer

up vote 0 down vote accepted

It's rsvp_status = 'unsure'.

https://developers.facebook.com/docs/reference/fql/event_member/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.