I need to validate the id_token I receive after authenticating with Auth0 on my website.
I know that I need to use the key in x5c from the jwks_uri. But what I don't know is if this information is stored somewhere by the OIDC-client-js component after being authenticated.
If so where can I find it to use it ? Or do I have to manually make a request to https://myapplication/.well-known/jwks.json ?
Thanks in advance for your help.