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