I am using oauth method in facebook to authenticate users. I am trying to get the code value from the redirect_uri after user logged in. I am calling the below ajax call for this purpose
$j.ajax({
url:'https://www.facebook.com/dialog/oauth?client_id='myappid'&redirect_uri=https://apps.facebook.com/lsc&scope=read_stream,publish_stream,manage_pages&response_type=code',
method : 'GET',
success : function(data){
alert('Page 1');
},
error : function(jqXHR,textStatus,errorThrown){
alert('Status is '+jqXHR.status);
alert('Text status is '+textStatus);
}
});
It says. Status is 0 and Text status is error. I do not know what's wrong with this code.
When i copy this url into my browser, it redirects the url to "https://apps.facebook.com/lsc?code=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" after user logged in.
I am trying to get this XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX value using jquery.
My question is,
Is there any way to get the redirect url with code using jquery?
Thanks,
jQuery.ajax()or$.ajax(). Next, if you include a variable into a string, like you have done withmyappidin theurl, you need to use a+to append it – jasdeepkhalsa Jan 23 at 22:40