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
{{ message }}
This repository has been archived by the owner on Oct 29, 2021. It is now read-only.
Hi @domenkozar ,
no, what I meant is to perform a request to the "iss" (Issuer address) to get the JWKSet.
This JWKSet can then be used to verify the JWT/ extract claims.
Something like that (psoeudocode):
1. Receive a JWT
2. open the JWT and read the "iss" address
3. Get the JWKSet from the iss (HTTP GET)
4. Verify/extract the claims from the JWT using the JWKSet
In the JWT there is a field "iss", that contains the issuer claim.
For example (in the case of Keycloak):
This address gives:
Is it possible to use that in Servant-Auth? Maybe as an option in JWTSettings?
The text was updated successfully, but these errors were encountered: