I am trying to use Facebook Graph API to get information about users who logged in via Facebook.
At the beginning, I was using only one function and no errors occurred; But then, I added another function that uses Facebook API. From that moment, none of the functions works. Only when I remove the new function, the old one works again...
I guess the code will be much understandable than what I described above:
function fb_login(){
FB.login(function(response) {
if (response.authResponse) {
access_token = response.authResponse.accessToken; //get access token
user_id = response.authResponse.userID; //get FB UID
FB.api('/me', function(response) {
user_email = response.email; //get user email
$.ajax({
type: "POST",
url: "http://*******/ajax.php",
data: { action: "login", id: user_id, email: user_email, first_name: response.first_name, last_name: response.last_name }
}).done(function( msg ) {
alert( "Data Saved: " + msg );
});
});
} else {
//user hit cancel button
console.log('User cancelled login or did not fully authorize.');
}
}, {
scope: 'publish_actions,email,read_stream,publish_stream'
});
}
The function above will work unless the function below exists.
function update_autopost(form)
{
FB.api('/me', function(response) {
var autopost_value = form.autopost.checked;
if(autopost_value == false)
{
autopost_value = "off";
}
else{
autopost_value = "on";
}
$.ajax({
type: "POST",
url: "http://*********/ajax.php",
data: { action: "update", id: response.authResponse.userID, autopost: autopost_value }
}).done(function( msg ) {
alert( "Data Saved: " + msg );
});
});
}
To be more detailed, after adding the second function, two things happens:
- The first function stops working.
- The second function is not able to get information from Facebook Graph API (for instance, response.authResponse.userID doesn't work).
form.autopost.checked– Pulkit Mittal Nov 4 '12 at 17:41if (response) {...your code here}– ifaour Nov 4 '12 at 18:12/medoesn't returnresponse.authResponse, try to test it in the JS console. You should use something likeresponse.id– ifaour Nov 4 '12 at 18:16userIDon is in fact not an object, but “nothing”, which in JavaScript is calledundefined. Calling/medoes not give you an authResponse object, only FB.login/FB.getLoginStatus do. – CBroe Nov 5 '12 at 11:16