reqwest icon indicating copy to clipboard operation
reqwest copied to clipboard

Coverage of WWW Authenticate?

Open lattice0 opened this issue 4 years ago • 2 comments

I'm trying to find information about authentication mechanisms supported by this library, and I found Basic and Bearer:

https://github.com/seanmonstar/reqwest/blob/c6eb2c4fcbc3934b119772e0997d91671ff68dc7/src/blocking/request.rs#L275

On bearer, it looks like I need to put my own digest information, which means that in this library I cannot simply put username and password and expect a server that has MD5 digest information to work, right?

This is the highest level library available so I guess there's no way to do this in Rust currently for HTTP?

I'm working on a digester for WWW Authenticate but I thought it was better to rely on one already implemented, but I couldn't find. If needed I can help to make it work here.

lattice0 avatar Apr 13 '21 06:04 lattice0

Check out #483 ;)

tuxuser avatar Jul 06 '21 10:07 tuxuser

👉🏾 https://github.com/seanmonstar/reqwest/issues/483#issuecomment-1140302199

maoertel avatar May 28 '22 17:05 maoertel