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 going through very strange issue. I want the high score of logged in user when they login in facebook, via FB api. I am using following code

    function returnhighscore()
    {
        FB.api("/"+FB.getUserID()+"/scores", 'get', {}, function(response) { 
          if (!response || response.error) {
            alert('Error occured');
          } else {
            var high_score1 = response.data[0].score;
            //document.getElementById("fbtestVal").innerHTML = response.data[0].score;
            return(high_score1);

          }
        }); 
    }

After FB load, i call this function. Strangly, this one is returning nothing but when i alert or console log the value within callback, it shows me score.

Can any one help?

Jacob

share|improve this question

1 Answer

Callback functions aren't supposed to return values. Rather, they should process whatever arguments are given to them, and possibly interact with higher scope variables.

In you case, I think you could declare a variable in the scope of your returnhighscore function, then make the FB.api call, update the value of this variable in your callback function, and finally return the variable (again in you function scope):

function returnhighscore()
{
    //declare variable in function scope
    var highscore = null;

    //call facebook api
    FB.api("/"+FB.getUserID()+"/scores", 'get', {}, function(response) { 
      if (!response || response.error) {
        alert('Error occured');
      } else {
        var high_score1 = response.data[0].score;
        //document.getElementById("fbtestVal").innerHTML = response.data[0].score;

        //update value of function scope variable
        highscore = high_score1;
      }
    });

    //return updated value
    return highscore;
}
share|improve this answer
This is also true for closures. Expecting "return" to work in js like it does in java is the typical culprit for this kind of confusion. – mugafuga Jun 18 '12 at 19:39

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.