digest-auth-request icon indicating copy to clipboard operation
digest-auth-request copied to clipboard

Make digest-auth requests with vanilla javascript

Results 16 digest-auth-request issues
Sort by recently updated
recently updated
newest added
trafficstars

I have some update fix bug, please review! Please

After updating from RN 0.52 to 0.54 our app could no longer connect to some servers. The server was responding with `WWW-Authenticate: Digest realm=".....` `WWW-Authenticate: Basic realm="......` but the Android...

I had an issue with this, and found out each headers value should be trimmed. Its simple one line fix, adding ' val = val.trim();' ``` for (var i =...

I ran into a problem with react native on iOS when using the debugger where under some conditions, there was no carriage return in the headers, just a newline. This...

Heya @inorganik thanks for this. Just a question, do you have any plans to allow users to add custom headers? Thanks

**I was wondering if the following is possible (if it makes sense at all):** - Authorizing at an API using Digest-Auth (_only authorizing_) - Using the JS-Fetch-Api for the GET/PUT/POST...