How to validate Access_Token

Hi, I am new to okta
I have API to generate Access_Token. now i want to validate the generated token. please suggest steps to validate the token.

Hi @ravikumar, thanks for visiting the Auth0 by Okta Community!

By default, Auth0 signs access tokens with RS256 private key and you verify the signature with the public key that you can get form https://{yourdomain}/.well-known/jwks.json.

There are libraries that can do some or all the verification - please take a look here: JSON Web Token Libraries - jwt.io.

Steps for the access token validation are described in our Quickstarts, like this one: Auth0 Go API SDK Quickstarts: Authorization

Please let me know if you have any questions!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.