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 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

share|improve this question

2 Answers

up vote 2 down vote accepted

FB.api is function which doing asynchronous request to Facebook API and return nothing. You can only get results within callback. You should leverage different approach to implement this:

var someObj = {
  getThirdPartyID : function (thirdPartyIDCallback) {
    return FB.api("/me?fields=third_party_id", function (userData) { 
      console.debug("Your Facebook ThirdPartyId is: " + userData["third_party_id"]);
      thirdPartyIDCallback(userData["third_party_id"]);
    });
  }
}

var handleThirdPartyID = function(thirdPartyID){
  // do something with thirdPartyID
  alert(thirdPartyID);
}
someObj.getThirdPartyID(handleThirdPartyID);
share|improve this answer
works out of the box! Ur a js ninja! tnx – zsitro Feb 1 '12 at 13:14

FB.api work async. This means that your function returns before FB.api callback function returns.

You should set the return value of FB.api to a variable or call other function inside of FB.api callback function.

function GetUserData(val){
 alert(val);
}
getThirdPartyID : function () {                     
    FB.api("/me?fields=third_party_id", function (userData) { 
        console.debug("Your Facebook ThirdPartyId is: " + userData["third_party_id"]);
        GetUserData(userData["third_party_id"]);
    });


};
share|improve this answer
thanks probably this answer is the same as the second one. it helped me! – zsitro Feb 1 '12 at 13:15

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.