I need to make a jsonp POST request with the content type 'application/json'. I can get the POST request to the server like this:

      jQuery.ajax({
        type: 'POST',
        url: url,
        data: data,
        success: success,
        error: error,
        async: true,
        complete: complete,
        timeout: TIMEOUT,
        scriptCharset: 'UTF-8',
        dataType: 'jsonp',
        jsonp: '_jsonp',
      });

But as soon as I add the line:contentType: "application/json" it starts sending it as an OPTIONS request rather than a POST.

How can I specify the content type and still submit the request as a POST?

link|improve this question

75% accept rate
Is the URL in your domain? What format does it return? – SLaks Oct 5 '10 at 0:30
feedback

1 Answer

up vote 16 down vote accepted

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.

link|improve this answer
If I leave out the contentType, the request is made and the server gets it as a POST. – Marcus Oct 5 '10 at 0:40
5  
Yeah, jQuery falls back to XMLHttpRequest as you can't POST via <script> inclusion. But that means the JSONP response will never work; if it's coming from a different hostname you won't be able to read anything from the response due to the Same Origin Policy. <script> inclusion can only trigger a GET, any data you want to send to it must go in URL query parameters. – bobince Oct 5 '10 at 1:19
Makes sense, thanks for the explanation. – Marcus Oct 5 '10 at 16:40
If you specify dataType: "jsonp" and type "POST", the "jsonp" takes precedent and it gets sent as a "GET" request (the "POST" gets ignored). Benefit is that this preserves the jsonp functionality, down-side is that it silently fails to POST and GETs instead (so you have to really be paying attention to catch it...) – cmcculloh May 10 at 14:54
feedback

Your Answer

 
or
required, but never shown

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