facebook connect error
Posted
by
coure06
on Stack Overflow
See other posts from Stack Overflow
or by coure06
Published on 2011-01-13T08:49:03Z
Indexed on
2011/01/13
8:54 UTC
Read the original article
Hit count: 237
I am getting error but empty statusText, here is my code
var ajaxUrl = 'https://graph.facebook.com/me?access_token=' + accessToken
$.ajax({
url: ajaxUrl,
dataType: 'json',
success: function(user){
alert('h');
},
error: function(xhr, ajaxOptions, thrownError){
alert(xhr.statusText);
}
});
© Stack Overflow or respective owner