I am trying to validate a token on my Dotnet Core API using following the example…
https://auth0.com/docs/quickstart/backend/aspnet-core-webapi/01-authorization
The page says “By default, your API uses RS256 as the algorithm for signing tokens. Since RS256 uses a private/public keypair, it verifies the tokens against the public key for your Auth0 account. The public key is in the JSON Web Key Set (JWKS) format, and can be accessed here.”
However the code provided does nothing to use the well-known-jwks.json end point. Do you have Dotnet Core code example that uses the end point for the public keys to validate the token?
Thank you in advance.