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.

Does the facebook javascript thread run as a single thread or are requests sent out in parallel? If I make two api calls one after another, such that the second relies on the result of the first, do I have to put the second in the first's callback?

Not a programmer by trade so I'm not sure if that lingo was right

share|improve this question

1 Answer

up vote 1 down vote accepted

I think what you mean is asynchronous. Yes, Graph API requests with the JS SDK are asynchronous, for example:

FB.api('/me', function(response) {
    //called when request is complete
    console.log(response.name);
});

So this means that if you make two API calls where the second one relies on the first, then you'll have two call the second one in the first's callback.

share|improve this answer
Perfect! Thanks! – JoshDG Feb 23 '12 at 15: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.