-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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 jwt-bearer authorization grant #9535
Add jwt-bearer authorization grant #9535
Conversation
8139073
to
7319048
Compare
@jgrandja Thank you for the merge. I have a question about the class JwtBearerOAuth2AuthorizedClientProvider. At line 62, the check of token expiration has been omitted. What happens if token is expired? In my understanding, the Provider will still return |
Yes, the request will fail at the resource with 401 and the
|
Thank you @jgrandja for this information. I understand the importance of the declaring a What do you think? |
That is a wonderful news. |
Add
jwt-bearer
authorization grant support.Related specifications
RFC 7523
2.1 Using JWTs as Authorization Grants
RFC 7521
4.1 Using Assertions as Authorization Grants
Closes gh-6053