I have a problem getting data by facebook api in Javascript. I follow the code contained in documentation. Sometimes, in a random manner my code doesn't work. No displayed alert data, no message errors on FireBug (I execute it on Firefox), with Chrome and IE I have the same problem... no data inserted in form fields. I also use JQuery for populating of fields. What would to be the problem?!? My pages are hosted on Amazon ElasticBeanStalk instance - (AWS). When I reload page from the address bar many times it works again! How can I fix the issue?? Thanks in advance for help!
var accesstoken;
var userid;
window.fbAsyncInit = function () {
// init the FB JS SDK
FB.init({
appId: '57012448490', // App ID from the App Dashboard
//channelUrl : 'http://default-environment-qkq56rvn6q.elasticbeanstalk.com/channel.html', // Channel File for x-domain communication
status: true, // check the login status upon init?
cookie: true, // set sessions cookies to allow your server to access the session?
xfbml: true // parse XFBML tags on this page?
});
// Additional initialization code such as adding Event Listeners goes here
FB.getLoginStatus(function (response) {
if (response.status === 'connected') {
userid = response.authResponse.userID;
accesstoken = response.authResponse.accessToken;
showUserData();
} else if (response.status === 'not_authorized') {
alert("Connesso, non autorizzato");
} else {
alert("Non connesso");
}
});
function showUserData() {
FB.api("/me",
function (response) {
$('#spanidutente').html(response.id);
$('#idsession').val(accesstoken);
$('#spannome').html(response.first_name);
$('#nome').val(response.first_name);
$('#spancognome').html(response.last_name);
$('#cognome').val(response.last_name);
var data = response.birthday.split("/");
var dnascita = data[2] + "-" + data[0] + "-" + data[1];
$('#spandatanascita').html(dnascita);
$('#datanascita').val(dnascita);
});
}
};
// Load the SDK's source Asynchronously
// Note that the debug version is being actively developed and might
// contain some type checks that are overly strict.
// Please report such bugs using the bugs tool.
(function (d, debug) {
var js, id = 'facebook-jssdk',
ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {
return;
}
js = d.createElement('script');
js.id = id;
js.async = true;
js.src = "https://connect.facebook.net/en_US/all" + (debug ? "/debug" : "") + ".js";
ref.parentNode.insertBefore(js, ref);
}(document, /*debug*/ false));
