How do I send a cross-domain POST request via JavaScript?
Notes - it shouldn't refresh the page, and I need to grab and parse the response afterward.
Your help with some code examples will be much appreciated.
|
How do I send a cross-domain POST request via JavaScript? Notes - it shouldn't refresh the page, and I need to grab and parse the response afterward. Your help with some code examples will be much appreciated. |
|||||||||
|
|
If you control the server being POSTed, simply leverage the "Cross-Origin Resource Sharing standard" by setting response headers on the server. This answer is discussed in other answers in this thread, but not very clearly in my opinion. In short here is how you accomplish the cross domain POST from from.com/1.html to to.com/postHere.php (using PHP as an example)
When you do the POST in step 2, your browser will send a "OPTIONS" method to the server. This is a "sniff" by the browser to see if the server is cool with you POSTing to it. The server responds with an "Access-Control-Allow-Origin" telling the browser its OK to POST|GET|ORIGIN if request originated from "http://from.com" or "https://from.com". Since the server is OK with it, the browser will make a 2nd request (this time a POST). It is good practice to have your client set the content type it is sending - so you'll need to allow that as well. MDN has a great write-up about HTTP access control, that goes into detail of how the entire flow works. According to their docs, it should "work in browsers that support cross-site XMLHttpRequest". This is a bit misleading however, as I THINK only modern browsers allow cross domain POST. I have only verified this works with safari,chrome,FF 3.6. Keep in mind the following if you do this:
|
|||||||||||
|
|
Lou Franco's answer didn't work for me, so I wrote my own variation.
Here's sample code; I tested it on IE6, IE7, IE8, IE9, FF4, GC11, S5.
As Ido Schacham pointed out, you won't be able to directly access the results of the POST, since the iframe exists on a separate domain. But this problem isn't totally insurmountable; you can do cross-domain cross-frame communication, if the remote server is willing to communicate with you, using |
|||||||||||
|
Pseudocode
You probably want to style the iframe, to be hidden and absolutely positioned. Not sure cross site posting will be allowed by the browser, but if so, this is how to do it. |
|||||||||||||||||
|
|
If you have access to all servers involved, put the following in the header of the reply for the page being requested in the other domain: PHP:
For example, in Drupal's xmlrpc.php code you would do this:
This probably creates a security problem, and you should make sure that you take the appropriate measures to verify the request. |
||||
|
|
|
Check the |
|||
|
|
Of course, if you want to use your server as a proxy, you can avoid all this. Simply submit the form to your own server, which will proxy the request to the other server (assuming the other server isn't set up to notice IP discrepancies), get the response, and return whatever you like. |
|||
|
|
|
One more important thing to note!!! In example above it's described how to use
JQuery 1.6 and lower has a bug with cross-domain XHR. According to Firebug no requests except OPTIONS were sent. No POST. At all. Spent 5 hours testing/tuning my code. Adding a lot of headers on the remote server (script). Without any effect. But later, I've updated JQuery lib to 1.6.4, and everything works like a charm. |
||||
|
|
High level.... You need to have a cname setup on your server so that other-serve.your-server.com points to other-server.com. Your page dynamically creates an invisible iframe, which acts as your transport to other-server.com. You then have to communicate via JS from your page to the other-server.com and have call backs that return the data back to your page. Possible but requires coordination from your-server.com and other-server.com |
|||
|
|
This is an old question, but some new technology might help someone out. If you have administrative access to the other server then you can use the opensource Forge project to accomplish your cross-domain POST. Forge provides a cross-domain JavaScript XmlHttpRequest wrapper that takes advantage of Flash's raw socket API. The POST can even be done over TLS. The reason you need administrative access to the server you are POSTing to is because you must provide a cross-domain policy that permits access from your domain. |
|||
|
|
|
I think the best way is to use XMLHttpRequest (e.g. $.ajax(), $.post() in jQuery) with one of Cross-Origin Resource Sharing polyfills https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-Browser-Polyfills#wiki-CORS |
|||
|
|
|
I have a code example for this problem. http://reddymails.blogspot.com/2012/05/solving-cross-domain-problem-using.html |
|||
|
|
Should be possible with a YQL custom table + JS XHR, take a look at: http://developer.yahoo.com/yql/guide/index.html I use it to do some client side (js) html scraping, works fine (I have a full audio player, with search on internet/playlists/lyrics/last fm informations, all client js + YQL) |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.