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 know the problem with ajax and return variables, I was reading in stackoverflow about this, I know that I have to use a callback function, but in my case didn't work, of course something I'm making wrong

My code is this:

var id_user=get_id_user_login();//undefined??????????

function get_id_user_login(){
    FB.api(                                                
         '/me',                     
          {fields:'id'},
          function(response){//callback       
                 console.log(response.id);//OK
                 return response.id;
           }
     );             
};
share|improve this question

1 Answer

up vote 2 down vote accepted

You can´t just return the value because it´s asynchronous. Try this:

function customFunction(id) {
    console.log(id);
}

function get_id_user_login(){
    FB.api(                                                
         '/me',                     
          {fields:'id'},
          function(response){   
                 customFunction(response.id);
           }
     );             
};

get_id_user_login();
share|improve this answer
yes really I tried this, thanks a lot. I wrote this because I was thinking that this is very "spaghetti" no?, if I write some functions like this... but ok, look that is the only way..... – francis Dec 11 '12 at 15:18
well, this is the best solution. but it of course depends on your whole project, of course it will look a bit different in a bigger one. don´t forget to accept my answer if it helped you :) – luschn Dec 11 '12 at 15:42
yes, a lot, but I need 15 reputation!, but I'll do – francis Dec 11 '12 at 15:44
ah, did not know that. you learn something new every day :) – luschn Dec 11 '12 at 15:49

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.