Skip to content

Instantly share code, notes, and snippets.

@thameera
Last active September 3, 2016 05:26
Show Gist options
  • Save thameera/4d36ba5f640135eeb639c1464fb6e604 to your computer and use it in GitHub Desktop.
Save thameera/4d36ba5f640135eeb639c1464fb6e604 to your computer and use it in GitHub Desktop.
How to change Auth0 global client secret

You can revoke the global client secret yourself as follows:

  1. Go to your Account Settings -> Advanced tab and copy the Global Client ID value.
  2. Go to the Management API v2 Explorer
  3. Click on Clients -> Update a client in the left sidebar.
  4. In the center panel, select the scopes update:clients and update:client_keys.
  5. In the id textbox, paste the global client ID that you copied in step 1.
  6. Enter the new global client secret in the body textarea, like this:
{
  "client_secret": "NEW-SECRET-HERE"
}

Now click on the 'Try' button. If you get a 200 response, the global client secret should be successfully updated.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment