How to make a jsonp POST request that specifies contentType with jQuery?

It is not possible to make a JSONP POST request.

JSONP works by creating a <script> tag that executes Javascript from a different domain; it is not possible to send a POST request using a <script> tag.

Leave a Comment