I have this code:
getThirdPartyID : function () {
return FB.api("/me?fields=third_party_id", function (userData) {
console.debug("Your Facebook ThirdPartyId is: " + userData["third_party_id"]);
return userData["third_party_id"];
});
},
But it returns empty. Whats the problem with this code? How can I access it with the same idea? tnx