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've so far suceeded in getting a valid access token. Now I'm just trying to get a JSON response using jQuery.

This is most of my code. It is called on load from a window created by the background.html:

$.ajax({
    url : 'https://graph.facebook.com/me?access_token=' + access_token,
    dataType: 'json',
    error: function() { alert('error'); },
    success: function( data ) { 
        alert( data );
    },
    type: 'GET'
}); 

The result is an alert with "NULL" as text.

The exact same url works fine if I paste it directly into my browser. Then I get my userdata back as expected.

What am i doing wrong?

share|improve this question
It's a chrome extension so it's not running from any domain. It's just like a desktop application. – MonkeyZinc May 28 '10 at 21:03
Try running chrome with --disable-web-security as a command line option, see if it works then. – Nick Craver May 28 '10 at 21:06
I tried to run it with the "--disable-web-security" that didn't make any difference. Then I tried "-disable-web-security" and suddenly I got an error alert instead as a result. But I can't say what went wrong. – MonkeyZinc May 28 '10 at 21:15

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.