We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a0abd0 commit 97ba13dCopy full SHA for 97ba13d
src/main/java/com/ning/http/client/Realm.java
@@ -519,7 +519,10 @@ public RealmBuilder parseProxyAuthenticateHeader(String headerLine) {
519
setRealmName(match(headerLine, "realm"));
520
setNonce(match(headerLine, "nonce"));
521
setOpaque(match(headerLine, "opaque"));
522
- // FIXME what about algorithm and opaque?
+ String algorithm = match(headerLine, "algorithm");
523
+ if (isNonEmpty(algorithm)) {
524
+ setAlgorithm(algorithm);
525
+ }
526
setQop(match(headerLine, "qop"));
527
if (isNonEmpty(getNonce())) {
528
setScheme(AuthScheme.DIGEST);
0 commit comments