mirror of
https://github.com/apache/httpcomponents-client.git
synced 2025-02-18 16:07:11 +00:00
HTTPCLIENT-1949: DigestScheme to use HttpRequest#getRequestUri instead of HttpRequest#getPath
This commit is contained in:
parent
65802bc8d3
commit
3c25ca7266
@ -218,7 +218,7 @@ private static MessageDigest createMessageDigest(
|
||||
|
||||
private String createDigestResponse(final HttpRequest request) throws AuthenticationException {
|
||||
|
||||
final String uri = request.getPath();
|
||||
final String uri = request.getRequestUri();
|
||||
final String method = request.getMethod();
|
||||
final String realm = this.paramMap.get("realm");
|
||||
final String nonce = this.paramMap.get("nonce");
|
||||
|
Loading…
x
Reference in New Issue
Block a user