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.

In my initialize function, within my router I have this piece of code:

AppRouter.prototype.initialize = function() {  
     Backbone.history.start();

     FB.api("/me", function(me) {
        name = me.name;
        alert('Hello ' + name)
     });
};

This alerts me with my name (Hello Danny).

However, I want to send this alert outside the FB.api function: My new code - which doesn't work and returns an alert with "null" is this:

AppRouter.prototype.initialize = function() {  
         Backbone.history.start();

         var name;
         name = null;

         FB.api("/me", function(me) {
            name = me.name;
         });
         alert('Hello ' + name)
    };

Can anyone suggest how I might go about doing this, any help would be much appreciated, thanks!

share|improve this question
You can't, FB.api is an AJAX call. What do you really need to do instead of alert('Hello ' + name)? – mu is too short Aug 27 '12 at 17:58
ah right. My plan was to save the results of that ajax call into a model. But I could see a way of doing that, if the above isn't possible? – Danny Aug 27 '12 at 18:01
Why can't you do that in the callback? – mu is too short Aug 27 '12 at 20:03

1 Answer

Ok, I've completely changed my structure after looking into how Backbone and the Facebook api can work together..

These two links tackle my problem and more:

How do I use an FB.api(JS SDK) response outside of the callback function?

https://gist.github.com/2769429

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.