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 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

share|improve this question

1 Answer

up vote 0 down vote accepted

I've found the problem. As I tested, FB.Data.query.wait is an asynchronous call, that means when FB gives back the results, it waits the main rendering to finish and then runs the callback, so it seems that it hasn't run, because the variables I set in there are set after the page is rendered. Now I have to find a way to asynchronously write back in the rendered page.

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.