-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Add code challenge methods for oidc provider configuration response #1329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add code challenge methods for oidc provider configuration response #1329
Conversation
@@ -111,7 +111,8 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse | |||
.tokenIntrospectionEndpointAuthenticationMethods(clientAuthenticationMethods()) | |||
.subjectType("public") | |||
.idTokenSigningAlgorithm(SignatureAlgorithm.RS256.getName()) | |||
.scope(OidcScopes.OPENID); | |||
.scope(OidcScopes.OPENID) | |||
.codeChallengeMethod("S256"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@drunkcattt Can you please update the test in OidcProviderConfigurationEndpointFilterTests
similar to OAuth2AuthorizationServerMetadataEndpointFilterTests
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@drunkcattt Are you able to update the test in OidcProviderConfigurationEndpointFilterTests
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's been added.
103b97f
to
dc892d8
Compare
dc892d8
to
1963092
Compare
Thanks for the PR @drunkcattt. This is now merged. |
Add code challenge method for oidc well-known configuration endpoint.
Closes gh-1302