I want to use user's facebook id in another functions. I used return but it didn't work. Whats wrong in my code?
function get_id(){
FB.login(function(response) {
if (response.authResponse) {
var token = response.authResponse.accessToken;
FB.api('/me?access_token='+token+'', function(response) {
var id = response.id;
return id;
});
}
});
}
var user_id = get_id();
this is an facebook app. And, I used come code with multi friend selector but i want to use user id global.