I have this peculiar flow.
- I make an
XMLHttpRequest
to my server - My server sends a
302
redirect to a different domain. The server at that domain isCORS
compliant. - The browser possibly follows the
Location
. I don't know what exactly happens here because this request doesn't surface in Chrome's debugging tools. - Finally I am left with an awkward looking request/response in chrome debugger.
Has someone been able to achieve response from cross domain redirection via XMLHttpRequest, or is it even possible?