How JSONP Works

• 3 min read

The Wikipedia Definition of JSONP is as follows:

a communication technique used in JavaScript programs which run in Web browsers. It provides a method to request data from a server in a different domain, something prohibited by typical web browsers because of the same origin policy.

The Problem That JSONP Fixes

The typical AJAX request using the JQuery library looks like this:

The problem comes when you try to change the URL to point to a different domain such as https://otherdomain.com/users/billy. The reason this fails is because there are security implications that come with making requests to different origins. I won’t bore you with specifics, but you can read more on the same-origin policy Wikipedia page.

How JSONP Works

While it is not possible to make a typical AJAX request to a different origin, it is possible to include a <script> from a different origin. Using this method, JSONP is able to work around the same-origin policy. The way a typical JSONP call works is like this:

  • create a new <script> tag using window.createElement()
  • set the src attribute to the desired JSONP endpoint
  • add the <script> to the <head> of the DOM
  • once loaded, the script passes data to a local callback function

The key difference between a JSON response and a JSONP response is the callback function. A regular AJAX endpoint would simply respond with a string of JSON like this:

A JSONP response, on the other hand, is actually an executable script that calls a designated JSONP callback function, passing a JSON string as a parameter. The typical JSONP response looks something like this:

Notice that this is valid JavaScript code. The way this JSONP endpoint would be called would look like this:

So once the new script is appended to the DOM, loaded and executed, it will call the callback function that you defined with the data that you requested. Pretty easy right? It’s only a couple more lines of code than a regular AJAX request. You probably thought that JSONP was some magical and complicated thing that JQuery abstracted away (I know I did).

Limitations and Conclusions of JSONP

While JSONP seems like a perfect solution to get around the same-origin policy, there is one caveat. Since a JSONP call is made by the inclusion of a script tag, requests are restricted to the HTTP GET method. There is no way to do a PUT or POST request with JSONP, which is limiting to say the least.

So while JSONP is great for calling read-only services such as weather and news APIs, it can not be used for much else. There are a few ways to get around the same-origin policy but I’ll save those for another tutorial.

If you enjoyed this tutorial, please consider sponsoring my work on GitHub 🤗

Be the first to cheers
Now look what you've done 🌋
Stop clicking and run for your life! 😱
Uh oh, I don't think the system can't handle it! 🔥
Stop it, you're too kind 😄
Thanks for the love! ❤️
Thanks, glad you enjoyed it! Care to share?
Hacker News Reddit

×

Recommended Posts ✍🏻

See All »
• 3 min read
✨ HTML Share Buttons
Read Post »
• 8 min read
🚜 A Simple Web Scraper in Go
Read Post »
• 2 min read
👨🏼‍💻 Going Indie, Again
Read Post »