You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-2
Original file line number
Diff line number
Diff line change
@@ -250,9 +250,10 @@ public class CommonDataSourceConfiguration {
250
250
- PKCE (``code_challege, code_challege_METHOD``) is optional.
251
251
- PKCE adds a Code Verifier and a Code Challenge to the flow, enhancing the Authorization Code Grant Flow by preventing the issuance of an Access Token if the Authorization Code is compromised.
- However, if ``patternhelloworld.securityhelper.authorization-code.consent=Y``is set in the``application.properties``, it will be redirected to the consent page.
Copy file name to clipboardExpand all lines: lib/src/main/java/io/github/patternhelloworld/securityhelper/oauth2/api/config/security/response/auth/authentication/DefaultWebAuthenticationFailureHandlerImpl.java
+22-1
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,9 @@
15
15
16
16
importjava.io.IOException;
17
17
importjava.util.ArrayList;
18
+
importjava.util.HashMap;
18
19
importjava.util.List;
20
+
importjava.util.Map;
19
21
20
22
21
23
@RequiredArgsConstructor
@@ -28,7 +30,7 @@ public class DefaultWebAuthenticationFailureHandlerImpl implements Authenticatio
28
30
// SecurityEasyPlusExceptionHandler does NOT handle this error.
0 commit comments