reqwest
reqwest copied to clipboard
browser asynchronous http requests
Reqwest should support logging levels. At a minimum, I'd like to be able to tell it: - Log nothing - Log method and URL - with headers & cookies -...
In IE 9 and 10 there are a few tests failing in the `XML` group and the test stop running at `MODULE: Cross-origin Resource Sharing`.
Fixes #139
If we use a FormData object, the content type is set to something like "multipart/form-data; boundary " by the browser by default, so it should be possible to force reqwest...
By adding the type raw @line 314 and 232 in the setType method. reqwest is now compatible with nonstandard file type's like binary mp3, midi etc.
Why does the README contain this example: ``` reqwest({ url: 'path/to/html' , method: 'get' , data: [ { name: 'foo', value: 'bar' }, { name: 'baz', value: 100 } ]...
I'm trying to get twitter shares count using Reqwest, it seems that JSONP from Reqwest doesn't work well. Here're more details http://stackoverflow.com/questions/22372364/get-twitter-and-facebook-shares-using-reqwest-js
Apparently, IE8 has two XHR engines of which the native one doesn't support PATCH while the ActiveX one does. For reference, here's jQuery's [fix](https://github.com/jquery/jquery/commit/06ee2c16f1c466a77fb25e07991e5adaa3385656).
I've been trying to get IE8 to invoke the jsonp generalCallback, and finally I commented out lines 145 and 146: // if this hack is used in IE10 jsonp callback...
I'd like to be able to specify an options object to be passed to the constructor of the XHR object. Specifically, I'd like to be able to pass the nonstandard...