Skip to content

Commit

Permalink
Fix typo in WWW-Authenticate header
Browse files Browse the repository at this point in the history
Fix typo in WWW-Authenticate header in basicAuth.
refer https://datatracker.ietf.org/doc/html/rfc7235#section-4.1
Fixes /issues/3053
  • Loading branch information
GDLMadushanka committed Dec 13, 2023
1 parent 5b8aafe commit 3733c10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ public class BasicAuthConstants {
public static final String RESPONSE = "RESPONSE";
public static final String TRUE = "true";
public static final String NO_ENTITY_BODY = "NO_ENTITY_BODY";
public static final String WWW_AUTHENTICATE = "WWW_Authenticate";
public static final String WWW_AUTHENTICATE = "WWW-Authenticate";
public static final String WWW_AUTH_METHOD = "Basic realm=\"WSO2 EI\"";
}

0 comments on commit 3733c10

Please sign in to comment.