Skip to main content
To make scheduled frequent calls for a production environment, you have to build a process at your backend that will provide you with a token automatically (and thus simulate a non-expiring token).

Prerequisites

Get access tokens

To ask Auth0 for a v2 token, perform a POST operation to the https://{yourDomain}/oauth/token endpoint, using the credentials of the Machine-to-Machine Application you created in the prerequisite step. The payload should be in the following format: Remember to update `{yourClientSecret}` with the in the Settings tab of your Application. The request parameters are:
Use the update:client_grants and create:client_grants scopes with only high-privileged applications, as they allow the client to grant further permissions to itself.
The response will contain a signed JWT, an expiration time, the scopes granted, and the token type.
From the above, we can see that our will expire in 24 hours (86400 seconds), it has been authorized to read and create applications, and it is a Bearer Access Token.

Use Auth0’s Node.js client library

As an alternative to making HTTP calls, you can use the node-auth0 library to automatically obtain tokens for the Management API.

Use access tokens

To use this token, include it in the Authorization header of your request. For example, in order to Get all applications use the following:
You can get the curl command for each endpoint from the Management API v2 Explorer. Go to the endpoint you want to call, and click the get curl command link at the Test this endpoint section.

Example: Python implementation

This python script gets a Management API v2 Access Token, uses it to call the Get all applications endpoint, and prints the response in the console. Before you run it make sure that the following variables hold valid values:
  • AUDIENCE: The Identifier of the Auth0 Management API. You can find it at the Settings tab of the API.
  • DOMAIN: The Domain of the Machine-to-Machine Application you created.
  • CLIENT_ID: The of the Machine to Machine Application you created.
  • CLIENT_SECRET: The Client Secret of the Machine-to-Machine Application you created.

Learn more