I don't understand jsonp.

I understand JSON. I don't understand JSONP. Wikipedia's document on JSON is (was) the top search result for JSONP. It says JSONP or "JSON with padding" is a JSON extension wherein a prefix is specified as an input argument of the call itself.

Huh? What call? That doesn't make any sense to me. JSON is a data format. There's no call.

The 2nd search result is from some guy named Remy, who writes JSONP is script tag injection, passing the response from the server in to a user specified function.

I can sort of understand that, but it's still not making any sense.


What is JSONP, why was it created (what problem does it solve), and why would I use it?


Addendum: I've just created a new page for JSONP on Wikipedia; it's now got a clear and thorough description of JSONP, based on jvenema's answer. Thanks, all.

link|improve this question

86  
I thought it was bad enough when they took my first name...then they took my last initial... – Jason Punyon Jan 14 '10 at 20:55
5  
There are meta-tags that you can add, and they're clearly documented in the guidelines. What you don't do is vent your personal frustration into the text. There are "talk" pages for every article where you can request improvements if you can't supply them yourself. See en.wikipedia.org/wiki/Wikipedia:Please_clarify – skaffman Jan 14 '10 at 21:21
1  
Skaffman, do I take it then from your looking-down-the-nose tone that you are the one who removed the perfectly reasonable questions from WIKIpedia? Without adding anything or improving it? How is it "vandalism" to ask a question. Sheesh. And yes, at this very moment I am going to improve the wikipedia page, with the information that jvenema provided. – Cheeso Jan 14 '10 at 21:21
3  
Great, if you have better info, then add it. But you don't ask questions on wikipedia, you add facts. – skaffman Jan 14 '10 at 21:27
1  
Just saw your new update - good stuff, and a big improvement over what was there before. – skaffman Jan 14 '10 at 21:57
show 6 more comments
feedback

4 Answers

up vote 109 down vote accepted

It's actually not too complicated...

Say you're on domain abc.com, and you want to make a request to domain xyz.com. To do so, you need to cross domain boundaries, a no-no in most of browserland.

The one item that bypasses this limitation is <script> tags. When you use a script tag, the domain limitation is ignored, but under normal circumstances, you can't really DO anything with the results, the script just gets evaluated.

Enter JSONP. When you make your request to a server that is JSONP enabled, you pass a special parameter that tells the server a little bit about your page. That way, the server is able to nicely wrap up its response in a way that your page can handle.

For example, say the server expects a parameter called "callback" to enable its JSONP capabilities. Then your request would look like:

http://www.xyz.com/sample.aspx?callback=mycallback

Without JSONP, this might return some basic javascript object, like so:

{ foo: 'bar' }

However, with JSONP, when the server receives the "callback" parameter, it wraps up the result a little differently, returning something like this:

mycallback({ foo: 'bar' });

As you can see, it will now invoke the method you specified. So, in your page, you define the callback function:

mycallback = function(data){
  alert(data.foo);
};

And now, when the script is loaded, it'll be evaluated, and your function will be executed. Voila, cross-domain requests!

It's also worth noting the one major issue with JSONP: you lose a lot of control of the request. For example, there is no "nice" way to get proper failure codes back. As a result, you end up using timers to monitor the request, etc, which is always a bit suspect. The proposition for JSONRequest is a great solution to allowing cross domain scripting, maintaining security, and allowing proper control of the request.

link|improve this answer
2  
Ahhhh, now I get it! Thanks a million. – Cheeso Jan 14 '10 at 21:18
8  
Please note that using JSONP has some security implications. As JSONP is really javascript, it can do everything else javascript can do, so you need to trust the provider of the JSONP data. I've written som blog post about it here: erlend.oftedal.no/blog/?blogid=97 – Erlend Jan 14 '10 at 21:24
6  
Is there really any new security implication in JSONP that is not present in a <script> tag? With a script tag the browser is implicitly trusting the server to deliver non-harmful Javascript, which the browser blindly evaluates. does JSONP change that fact? It seems it does not. – Cheeso Jan 14 '10 at 21:45
1  
Nope, it doesn't. It you trust it to deliver the javascript, same thing applies for JSONP. – jvenema Jan 14 '10 at 21:52
1  
It's worth noting that you can ramp up security a little by changing how the data is returned. If you return the script in true JSON format such as mycallback('{"foo":"bar"}') (note that the parameter is now a string), then you can parse the data manually yourself to "clean" it before evaluating. – jvenema Jan 15 '10 at 0:04
show 7 more comments
feedback

jsonp is really a simply trick to overcome XMLHttpRequest same domain policy. (As you know one cannot send ajax(XMLHttpRequest) request to a different domain.)

So - instead of using XMLHttpRequest we have to use script html tags, the ones you usually use to load js files, in order for js to get data from another domain. Sounds weird?

Thing is - turns out script tags can be used in a fashion similar to XMLHttpRequest! Check this out:

script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'http://www.someWebApiServer.com/some-data';

You will end up with a script segment that looks like this after it loads the data:

<script>
{['some string 1', 'some data', 'whatever data']}
</script>

However this is a bit inconvenient, because we have to fetch this array from script tag. So jsonp creators decided that this will work better(and it is):

script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'http://www.someWebApiServer.com/some-data?callback=my_callback';

Notice my_callback function over there? So - when jsonp server receives your request and finds callback parameter - instead of returning plain js array it'll return this:

my_callback({['some string 1', 'some data', 'whatever data']});

See where the profit is: now we get automatic callback (my_callback) that'll be triggered once we get the data. That's all there is to know about jsonp: it's a callback and script tags.

NOTE: these are simple examples of JSONP usage, these are not production ready scripts.

Basic javascript example (simple twitter feed using jsonp)

<html>
    <head>
    </head>
    <body>
        <div id = 'twitterFeed'></div>
        <script>
        function myCallback(dataWeGotViaJsonp){
            var text = '';
            var len = dataWeGotViaJsonp.length;
            for(var i=0;i<len;i++){
                twitterEntry = dataWeGotViaJsonp[i];
                text += '<p><img src = "' + twitterEntry.user.profile_image_url_https +'"/>' + twitterEntry['text'] + '</p>'
            }
            document.getElementById('twitterFeed').innerHTML = text;
        }
        </script>
        <script type="text/javascript" src="http://twitter.com/status/user_timeline/padraicb.json?count=10&callback=myCallback"></script>
    </body>
</html>

Basic jQuery example (simple twitter feed using jsonp)

<html>
    <head>
        <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
        <script>
            $(document).ready(function(){
                $.ajax({
                    url: 'http://twitter.com/status/user_timeline/padraicb.json?count=10',
                    dataType: 'jsonp',
                    success: function(dataWeGotViaJsonp){
                        var text = '';
                        var len = dataWeGotViaJsonp.length;
                        for(var i=0;i<len;i++){
                            twitterEntry = dataWeGotViaJsonp[i];
                            text += '<p><img src = "' + twitterEntry.user.profile_image_url_https +'"/>' + twitterEntry['text'] + '</p>'
                        }
                        $('#twitterFeed').html(text);
                    }
                });
            })
        </script>
    </head>
    <body>
        <div id = 'twitterFeed'></div>
    </body>
</html>

JSONP stands for JSON with Padding. (very poorly named technique as it really has nothing to do with what most people would think of as “padding”.)

link|improve this answer
feedback

Because you can ask the server to append a prefix to the returned JSON object. E.g

function_prefix(json_object);

in order for the browser to eval "inline" the JSON string as an expression. This trick makes it possible for the server to "inject" javascript code directly in the Client browser and this with bypassing the "same origin" restrictions.

In other words, you can have cross-domain data exchange.


Normally, XmlHttpRequest doesn't permit cross-domain data-exchange directly (one needs to go through a server in the same domain) whereas:

<script src="some_other_domain/some_data.js&prefix=function_prefix>` one can access data from a domain different than from the origin.


Also worth noting: even though the server should be considered as "trusted" before attempting that sort of "trick", the side-effects of possible change in object format etc. can be contained. If a function_prefix (i.e. a proper js function) is used to receive the JSON object, the said function can perform checks before accepting/further processing the returned data.

link|improve this answer
feedback

developer.yahoo explains jsonp crystal clearly, including a DIY example. It is worth taking a look.

link|improve this answer
The link seems to be broken. – Drew Noakes Aug 29 '10 at 16:21
link updated to a new one – Elzo Valugi Nov 10 '10 at 12:11
thanks Elzo Valugi. – Comptrol Nov 10 '10 at 16:43
1  
again broken.. Yahoo has a habit of it... – typedefcoder2 Dec 4 '11 at 3:12
link is still broken – arch stanton Jan 4 at 9:44
feedback

Your Answer

 
or
required, but never shown

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