-
Hello, In my project I have an API Gateway which handles OIDC and then injects custom headers with the tokens before the request is proxied to my Quarkus services. I was wondering, if instead of me writing a custom filter to extract the token from the headers and set the security principal there is a Quarkus way/filter to use instead? Quarkus has very rich OIDC integration and examples, however all samples I can find take for granted that Quarkus itself handles the authentication part. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
/cc @manovotn, @mkouba, @pedroigor, @sberyozkin |
Beta Was this translation helpful? Give feedback.
-
https://quarkus.io/guides/security-jwt seems to do the job 👍 |
Beta Was this translation helpful? Give feedback.
-
@NMichas Sure, using smallrye-jwt custom factory should do |
Beta Was this translation helpful? Give feedback.
https://quarkus.io/guides/security-jwt seems to do the job 👍