-
Notifications
You must be signed in to change notification settings - Fork 38.7k
Open
Labels
in: webIssues in web modules (web, webmvc, webflux, websocket)Issues in web modules (web, webmvc, webflux, websocket)type: enhancementA general enhancementA general enhancement
Milestone
Description
Spring's WebClient allows specifying Basic Auth credentials quite simply:
webClient.get()
.uri(someEndpoint)
.headers(httpHeaders -> httpHeaders.setBasicAuth(someUserName, somePassword))
...
However, there doesn't seem to be a way to configure the WebClient to perform Digest Auth (RFC 7616).
A lot of servers rely on Digest Auth, and given that WebClient supports the less secure Basic Auth protocol, it would make sense to add support to the client's capabilities. Note that this feature has been requested in other places, for example on StackOverflow.
Thanks for considering this feature request!
Issue originally posted in the Spring Security project (spring-projects/spring-security#7861).
pszemus, nimai, donal56, lvhuichao and ArcheAccount
Metadata
Metadata
Assignees
Labels
in: webIssues in web modules (web, webmvc, webflux, websocket)Issues in web modules (web, webmvc, webflux, websocket)type: enhancementA general enhancementA general enhancement