Is there any way in Micronaut, where I can do an authentication to the JWT authentication provider ? #716
dileepnaik
started this conversation in
General
Replies: 1 comment 3 replies
-
@dileepnaik I move this to a discussion. I don't think it is an issue. Sorry but I don't fully understand your question. Typically, in Micronaut Security when you receive a request with a JWT Bearer token we validate the signature of the JWT and the claims. We don't do an extra network call against a central service. Is that what you want to achieve? You can always create your own implementation of I explain here the security flow: https://youtu.be/VrnVbAyKSEY?t=336 |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I can Only see the documentation for the authentication mechanism in the same server.
But in my case, I have the JWT auth provider, and the clients will directly call and get the jwt token.
Clients, While sending the request it includes the bearer token, but I have to go and validate against the Auth provider. Is there any way in micronaut I can override the behaviour and make a call to AuthProvider and validate the JWT token ?
Beta Was this translation helpful? Give feedback.
All reactions