I known JSONP is JSON with padding.
I understand what JSON is, and how to use it with jQuery.getJSON(). However, I do not understand the concept of the callback when introducing JSONP.
Can anyone explain to me how this works?
|
I known JSONP is JSON with padding. I understand what JSON is, and how to use it with Can anyone explain to me how this works? |
|||||
|
|
JSONP is a method commonly used to bypass the cross-domain policies in web browsers (You are not allowed to make AJAX requests to a webpage perceived to be on a different server by the browser). JSON and JSONP behave differently on both the client and the server. JSONP requests are not dispatched using the XMLHTTPRequest (and the associated browser methods), instead a JSON Request:
JSONP Request:
The difference between a JSON response and a JSONP response, is that the JSONP response is formulated such that the response object is passed as an argument to a callback function. JSON:
JSONP:
This is why you see JSONP requests containing the "callback" parameter; so the server knows the name of the function to wrap the response around. This function must exist in the global scope at the time the Another difference to be aware of between the handling of a JSON response and a JSONP response, is that any parse errors in a JSON response can potentially be caught (by wrapping the attempt to evaluate the responseText in a try/catch statement). Because of the nature of a JSONP response however, parse errors in the response will yield an uncatchable JS Parse error. Both formats however, can implement timeout errors (by setting a timeout before initiating the request, and clearing the timeout in the response handler. The usefulness of using jQuery to make JSONP requests, is that jQuery does alllllllll of the work for you in the background. jQuery requires (by default), for you to include Comparable JSON/ JSONP Implementations (assuming response object is JSON
JSONP:
|
|||||||||||||
|
|
Say you had some URL that gave you JSON data like:
...and you had a similar URL except it used JSONP, to which you passed the callback function name 'myCallback' (usually done by giving it a query parameter called 'callback', e.g.
...which is not just an object, but is actually code that can be executed. So if you define a function elsewhere in your page called The cool thing about this is: you can create a script tag and use your URL (complete with This is what jQuery does when you make an ajax request (using
Here, jQuery takes care of the callback function name and query parameter - making the API identical to other ajax calls. But unlike other types of ajax requests, as mentioned, you're not restricted to getting data from the same origin as your page. |
||||
|
|
|
It appears to allow cross domain script injection |
|||
|
|