Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to post data to JsonP? Or does all data have to be passed in the querystring as a GET request?

I have alot of data that I need to send to the service, cross domain, and it is too large to send via the querystring

What are the options for getting around this?

share|improve this question

5 Answers

up vote 42 down vote accepted

It is not possible to do an asynchronous POST to a service on another domain, due to the (quite sensible) limitation of the same origin policy. JSON-P only works because you're allowed to insert <script> tags into the DOM, and they can point anywhere.

You can, of course, make a page on another domain the action of a regular form POST.

Edit: There are some interesting hacks out there if you're willing to go to a lot of effort inserting hidden <iframe>s and mucking about with their properties.

share|improve this answer
You mentioned that an "asynchronous POST" is not possible....then can I do a synchronous POST? – Mark Mar 11 '11 at 6:01
2  
@mark "synchronous POST" means submitting a form that uses <form method="post" action="http://.../..."> – lost-theory Jun 3 '11 at 22:00
1  
This is not quite true. You certainly can do POST requests to other domains as long as both that domain and your browser support CORS. But it is totally true that POST and JSONP are not compatible. – hippietrail Feb 28 '12 at 12:24
1  
With JSONP, why is a GET allowable, but not a POST? – Jonathan M May 9 '12 at 17:46
1  
JSONP is implemented by inserting <script> tags that point to another domain. The only way to execute POST requests in a browser is via HTML forms or XMLHttpRequest. – friedo May 10 '12 at 0:20

If you need to send a lot of data cross-domain. I usually create a service that you can call in two steps:

  1. First the client do a FORM submit (post allowed cross domain). The service stores the input in the session on the server (using the GUID as key). (the client creates a GUID and send's it as a part of the input)

  2. Then the client do a normal script-inject (JSONP) as a parameter you use the same GUID as you used in the FORM post. The service processes the input from the session and returns the data in the normal JSONP-fashion. After this the session is destroyed.

This of course relies on that you write the server-backend.

share|improve this answer
Tried your aproach. Worked for FF14 and Chrome20. Opera11 and IE9 did just not transfer the post. (Checked it with their debug tools and listened on the server at the other end) Maybe related to the IE's disability is this question: stackoverflow.com/questions/10395803/… Chrome complaint in the console, but still did the POST: XMLHttpRequest cannot load localhost:8080/xxx Origin null is not allowed by Access-Control-Allow-Origin. – OneWorld Jul 30 '12 at 17:32

Well generally JSONP is implemented by adding a <script> tag to the calling document, such that the URL of the JSONP service is the "src". The browser fetches script source with an HTTP GET transaction.

Now, if your JSONP service is in the same domain as your calling page, then you could probably cobble something together with a simple $.ajax() call. If it's not in the same domain, then I'm not sure how it'd be possible.

share|improve this answer
It's not in the same domain in this case. And I am assuming that only GET is possible, but wanted to check as I've only started reading about JsonP today and need to make some decisions on whether it is suitable for what I need – ChrisCa Apr 23 '10 at 14:26
1  
If it's not in the same domain but it supports CORS then it will be possible as long as the browser also supports it. In these cases you will use plain JSON rather than JSONP. – hippietrail Feb 28 '12 at 12:26
Yes, @hippietrail 2 years makes a big difference :-) CORS definitely makes it possible, but of course it does require that the data source be set up appropriately. – Pointy Feb 28 '12 at 13:05

There's a (hack) solution I've did it many times, you'll be able to Post with JsonP. (You'll be able to Post Form, bigger than 2000 char than you can use by GET)

Client application Javascript

$.ajax({
  type: "POST", // you request will be a post request
  data: postData, // javascript object with all my params
  url: COMAPIURL, // my backoffice comunication api url
  dataType: "jsonp", // datatype can be json or jsonp
  success: function(result){
    console.dir(result);
  }
});

JAVA:

response.addHeader( "Access-Control-Allow-Origin", "*" ); // open your api to any client 
response.addHeader( "Access-Control-Allow-Methods", "POST" ); // a allow post
response.addHeader( "Access-Control-Max-Age", "1000" ); // time from request to response before timeout

PHP:

header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: POST');
header('Access-Control-Max-Age: 1000');

Doing like this, you are opening your server to any post request, you should re-secure this by providing ident or something else.

With this method, you could also change the request type from jsonp to json, both work, just set the right response content type

jsonp

response.setContentType( "text/javascript; charset=utf-8" );

json

response.setContentType( "application/json; charset=utf-8" );

Please not that you're server will no more respect the SOP (same origin policy), but who cares ?

share|improve this answer

It is possible, here is my solution:

In your javascript:

jQuery.post("url.php",data).complete(function(data) {
    eval(data.responseText.trim()); 
});
function handleRequest(data){
    ....
}

In your url.php:

echo "handleRequest(".$responseData.")";
share|improve this answer
7  
In this case jQuery most likely turned your request into Get according to their documentation: Note: This will turn POSTs into GETs for remote-domain requests. api.jquery.com/jQuery.ajax – OneWorld Jul 30 '12 at 8:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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