From a RESTful Backbone application, I\'m doing CORS requests from mydomain.com to myExtdomain.com.
mydomain.com
myExtdomain.com
I did set up CORS on my
For me, the solution was to add Access-Control-Allow-Credentials: true in response headers of server side: this is the symmetric of setting request.withCredentials = true; for a XMLHttpRequest object on client side.
Access-Control-Allow-Credentials: true
request.withCredentials = true;
XMLHttpRequest