Disable Refresh Token Rotation
You can disable refresh token rotation for each application using Dashboard or the Management API.
Disable with the Dashboard
From the Auth0 Dashboard, navigate to Applications > Applications and select the application you wish to configure.
On the Settings tab, locate the Refresh Token Rotation section and disable the Allow Refresh Token Rotation toggle.
Select Save Changes at the bottom of the screen.
Disable with the Management API
Disable refresh token rotation for each application using the Management API:
to configure this snippet with your accountconst auth0 = await createAuth0Client({ domain: '{yourDomain}', client_id: '{yourClientId}', audience: '{yourApiIdentifier}', useRefreshTokens: false });
Was this helpful?
/Configure the non-rotating refresh token settings as follows:
PATCH /api/v2/clients/{client_id} { "refresh_token": { "rotation_type": "non-rotating", "expiration_type": "non-expiring" } }
Was this helpful?
/