node-http-digest-client icon indicating copy to clipboard operation
node-http-digest-client copied to clipboard

Make HTTP requests to servers that employ digest authentication.

Results 9 node-http-digest-client issues
Sort by recently updated
recently updated
newest added

Sometimes some apis give algorithm=MD5 in the response headers without quotes which breaks the code with below traceback. ``` // console output of parts array realm="MMS Public API" domain="" nonce="7hziqlF0xTs4PbKVmzPlEGq0yZRNiFuY"...

Hey, I'm using your module and when tried to make a request I got an exception: TypeError: Cannot read property 'length' of null at parseChallenge [as _parseChallenge] /home/yeudit/workspace/att/breeze/System/core/node_modules/http-digest-client/http-digest-client.js:112:15 at handleResponse...

var digest = require('http-digest-client').createDigestClient('username', 'password'); throws an error. 1. you should change it in: var digest = require('http-digest-client')('username', 'password'); 1. it throws an Error here: HTTPDigest.prototype._parseChallenge = function parseChallenge(digest) {...

Please check my solution for fix post request. TIA!

Had some issues with an API we are using for iSpot.tv, managed to fix them its really minor things that make it behave more like chrome. TBH iSpots server software...

Hi, When request an invalid address, you may got an error like this: ``` events.js:72 throw er; // Unhandled 'error' event ^ Error: connect ETIMEDOUT at errnoException (net.js:901:11) at Object.afterConnect...

This version now handles digest requests as a wrapper around node request module. I have also added some tests, though of course you need an appropriate server to talk to.

Add a callback for getting the request object so data could be posted.

Hello, I have added POST support for the library, please review and merge if helpful