So I'm trying to make a request to the StackOverflow api with the following jQuery code:

$.ajax({                                                                                                                                                                                                        
    type: 'POST',                                                                                                                                                                                                 
    url: 'http://api.stackoverflow.com/1.1/stats',                                                                                                                                              
    dataType: 'jsonp',                                                                                                                                                                                                
    success: function() { console.log('Success!'); },                                                                                                                                                                                       
    error: function() { console.log('Uh Oh!'); }                                                                                                                                                              
});   

But when I open the file on my machine, in either FireFox or Chrome, and make the request, I get this error:

Resource interpreted as Script but transferred with MIME type application/json.
Uncaught SyntaxError: Unexpected token :
Uh Oh!

I don't have a clue what's going on. I know the StackOverflow api Gzips its responses, would this cause any trouble?

link|improve this question

70% accept rate
What do you get from the server? I get JSON - and JSON is not JSON-P, which encapsulates the data in a callback function, which must be in your global namespace, and which you told the server about in your request (something else I don't see in your code). The point is, just don't tell your jQuery the result is JSONP if really it is JSON. – Mörre May 18 '11 at 14:06
I used JSONP because it was suggested elsewhere on StackOverflow. When I use JSON I get this error: XMLHttpRequest cannot load http://api.stackoverflow.com/1.1/stats. Origin null is not allowed by Access-Control-Allow-Origin. – Gisborne May 18 '11 at 14:08
Don't know their API, but what is returned from that URL clearly is JSON, as I said. With "dataType" you only tell your jQuery how to interpret the result, you don't tell the server that you want JSONP. – Mörre May 18 '11 at 14:11
feedback

2 Answers

up vote 5 down vote accepted

You have to set an unconventional parameter to get the SO API to work. Rather than the conventional callback, you need to pass a jsonp parameter.

Furthermore, you can't do POST with JSONP.

$.ajax({                                                                                                                                                                                                        
    type: 'GET',                                                                                                                                                                                                 
    url: 'http://api.stackoverflow.com/1.1/stats',                                                                                                                                              
    dataType: 'jsonp',                                                                                                                                                                                                
    success: function() { console.log('Success!'); },                                                                                                                                                                                       
    error: function() { console.log('Uh Oh!'); },
    jsonp: 'jsonp'                                                                                                                                                
});

It is not possible to do cross-domain AJAX using the conventional XMLHTTPRequest. This is for security reasons (it's call the same-origin policy).

There is a workaround. script tags are not subject to this restriction. This means that you can insert a script tag into the document that calls a URL. If you define a globally-accessible function in your script and tell the remote server what that function is called, the server can pass code that wraps the data to be sent in a call to that function.

The difficulty you had here is with the StackOverflow API. Conventionally, you would use the callback argument in your request, to tell the server what your function is called. However, StackOverflow's API asks you to use the jsonp parameter instead.

link|improve this answer
"jsonp" is the parameter - but its value is the name of a function in ones global namespace, which gets called once the results are in. – Mörre May 18 '11 at 14:15
This works, but could you briefly explain why? – Gisborne May 18 '11 at 14:16
As I said, see comments to your Q, you have to tell THE SERVER that you want JSONP, or it sends you JSON! how depends on the server, this one wants a parameter "jsonp" with the name of the callback function. – Mörre May 18 '11 at 14:17
1  
That's nice for jQuery - I told (and showed) him what the SERVER wants. Isn't it better to know the background rather than how one specific library implements it??? "I only learned to press RED buttons, but this one is gren, so I can't turn on the light, so sorry". Just joking :) (well, not quite) – Mörre May 18 '11 at 14:18
1  
Yes, we all know that, and your point is? See above, I think I said everything. You prefer to tell him ONLY about jquery (granted, that was he question) - while I prefer to broaden the scope to tell him how it ACTUALLY WORKS, independent of the lib being used. – Mörre May 18 '11 at 14:21
show 6 more comments
feedback

Try this URL: http://api.stackoverflow.com/1.1/stats?jsonp=callme

"callme" is the name of your callback function - in your GLOBAL NAMESPACE (window object).

By the way, if you are running Firefox and have the JSONView add-on installed you can test the above URL (and yours for comparison) directly.

Result from calling the URL:

callme({
  "statistics": [
...
  ]
})
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.