-
Notifications
You must be signed in to change notification settings - Fork 78
qwest.get but OPTIONS method sent #90
Comments
Really weird... Qwest by itself does not know what an OPTIONS request method is. So I assume it's a bug in your code somewhere, or in Chrome for Mac. |
I will look much deeper. But I've got the same behavior on firefox. Stock XHR request work fine: var oReq = new XMLHttpRequest();
oReq.open("get", "https://myUrl", true);
oReq.send(); Thanks for your help |
Catch the problem: So it's not the lib. |
Good to know ;) |
I'm running into the same issue (and in my case, it's generating a 403). Like @ydeshayes, a stock XHR request works fine, but a I think what's happening is that the From the spec (http://www.w3.org/TR/cors/):
Setting |
Thanks a lot for the explanations! I'll put a note on CORS in the docs ;) |
@vpatil : I was thinking of your last comment. With If somebody is running into this issue, try to set |
Hello,
I call
but when I look at the request I got this:
I'm on chrome 46.0.2490.86 (64-bit) on macOS
Do you know some similar issues with your lib ?
Thanks
The text was updated successfully, but these errors were encountered: