I need help with calling FB.api function when jquery ajax() call returns with success. The alert showing facebook name works only in Chrome. Nothing to do with Firefox and IE8. alert(data) is ok and the window reload also. But FB.api no. Thanks very much for your help:
function fb_login() {
FB.login(function(response) {
//alert('login');
if (response.authResponse) {
$.ajax({
url: 'fb_login.asp',
data: '',
type: 'POST',
dataType: 'text',
timeout: 10000,
error: function(){
alert('Error login Facebook');
},
success: function(data){
alert(data);
// do something with xml
FB.api('/me', function(resp) {
alert(resp.name);
});
window.location.reload();
//alert('ok');
}
});
}
}, {scope:'email,publish_stream'});
}
@bepi: Best to add that to the question using the "edit" link. – T.J. Crowder Feb 27 '12 at 10:53