Check Management API calls

Check other API calls

  • Check in the HAR file if the access token contains correct scopes to call the API.
    Before sharing a HAR file with anyone (including Auth0), ensure that you remove or obfuscate all sensitive data, such as:
    • Confidential user information
    • Personal identifiable information (PII)
    • Confidential application information
    To learn more, read the following articles on Auth0 Community:
  • Check if the response to the /authorize endpoint call contains a scopes object. If so, check if the returned scopes are different from the requested scopes.
  • Make sure your API can validate the Access Token. It should validate the , issuer, client (if any), signature algorithm, signature, claims and permissions.
  • If you experience errors with access token expiration, they could be caused by clock skew differences manifested across different systems or even different language libraries, such as Java and Node.js. This can be handled by running NTP on servers and configuring a clock skew tolerance in libraries used to validate tokens such as jwt.verify.
See the Monitoring page for more details on each of the log events that can help you troubleshoot issues.

Learn more