Ive been bashing my head for a few hours now. Ive finally integrated the Phonegap Facebook plugin into my application, but whenever I do:
FB.api('/me', function(me){
alert("ID: "+me.id);
});
or
var fbid = "1";
FB.getLoginStatus(function(response) {
if (response.status == 'connected') {
fbid = response.authResponse.userID;
var token = response.authResponse.accessToken;
// alert(response.authResponse.userID);
// alert(response.authResponse.accessToken);
etc...
The token is fine, but the ID alerts are always 'undefined' which seems weird because you need the ID to get the token if im correct?