I am currently allowing a user to log in with Lock on the front end. After the user authenticates, I receive the 32 character access token from authResult.accessToken. I want to take this token and send it to an API endpoint where it can be verified before responding back to the front end with whatever data.
What is the easiest way to verify that this access token is valid? Is there simply an auth0 endpoint I can send it to for verification? I know I can try to verify a JWT with the jsonwebtoken NPM library, but the token I get back from the Lock authentication appears to just be a 32 character token and now a JWT?