abstract-http-request icon indicating copy to clipboard operation
abstract-http-request copied to clipboard

Abstract HTTP Request for Browsers and Node.js

Results 10 abstract-http-request issues
Sort by recently updated
recently updated
newest added

Hi, AJ! I know you're off to bigger and better things, but I recently kludged this into working. XHR2 appears to have its own timeout mechanism, but when I tried...

I've noticed that there are no examples that use cookies, and some APIs require cookies. It'd be useful to document how to send specific cookies in request, especially since they...

the solution is to do `new Buffer(JSON.stringify(str)).length`

Hi, So the function hasFiles in options.js uses 'instanceof' to determine if something is a file, but because of the way instanceof works, outside packages can never actually create a...

It would be awesome to have some kind of middleware to pass the request and response to once the request finishes. Maybe pass in an array of middleware functions when...

why does it through when it obviously should pass the error? I dunno. I must have not had enough sleep. @gissues:{"order":5,"status":"backlog"}

when using the shortcut methods (`get`, `post`, `put`, `delete`, etc), if `href` is url with a host (not just a path), the query parameters are not concatenated. This is a...

[this example fails to parse as JSONP](http://api.campusbooks.com/10/rest/bookprices?isbn=9780295959894&image_height=&image_width=&key=BDz21GvuL6RgTKiSbwe3&format=json&callback=jsonp_1312298225002&callback=jsonp_1312298225002)... yet the other 2300 worked just fine... @gissues:{"order":10,"status":"backlog"}

Works (correct vhost retrieved): ``` curl http://109.169.56.223 -H 'Host: foobar300.com' ``` Fails to set host: ``` (function () { "use strict"; var request = require('ahr2') ; request({ "host": '109.169.56.223' ,...