Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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,

share|improve this question
   
You should start accepting the answers if you want people to keep helping you. – Alexander Nenkov Jan 23 at 22:22
For starters you need to use a proper function either jQuery.ajax() or $.ajax(). Next, if you include a variable into a string, like you have done with myappid in the url, you need to use a + to append it – jasdeepkhalsa Jan 23 at 22:40

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.