verify if managament API token expired?

Hi, how do you check if your management API expires, is there any resource to verify this?

thanks

The exp claim in JWT’s represent the token expiration. Management API access tokens are JWT’s that can be validated using any of the libraries listed on https://jwt.io/ that support the exp check.

hi, thanks for answer, I am using auth0 SDK for java, i tried with jjwt(supported by stormpath) and with java-jwt (supported by auth0), but both requires the signing key of the token to do the verification, for that reason I choosed to decode the token by myself using the java util class Base64