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 am trying the get all my facebook friends that are attending to a specific event.

select uid, rsvp_status from event_member where uid IN (SELECT uid2 FROM friend WHERE uid1=me()) AND eid=100609746772815 and  rsvp_status="attending";

What do I do wrong?

share|improve this question
shouldn´t it be "attending" for the rsvp_status? – luschn Nov 20 '12 at 15:15
yes, my bad...I edited the question, but it still doesn't work – Ranco Nov 20 '12 at 15:44
1  
i tested it and answered it, please accept my answer if it works for you too :) – luschn Nov 20 '12 at 17:12

1 Answer

up vote 1 down vote accepted

It works fine if you use the permission "friends_events" at the user login. Without that you just get an empty result.

share|improve this answer
it worked...thanks! – Ranco Nov 20 '12 at 17:37

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.