Bishan
Bishan

Reputation: 15740

Auth0 Delegated Administration Extension

I am trying to use Auth0 Delegated Administration Extension in my app. For that, need to add a config file as below.

{
  "AUTHORIZE_API_KEY": "mysecret",
  "EXTENSION_SECRET": "mysecret",
  "WT_URL": "http://localhost:3000/",
  "AUTH0_DOMAIN": "me.auth0.com",
  "AUTH0_CLIENT_ID": "myclientid",
  "AUTH0_CLIENT_SECRET": "myclientsecret",
  "EXTENSION_CLIENT_ID": "myotherclientid"
}

But I was unable to find values for AUTHORIZE_API_KEY and EXTENSION_SECRET

From where could I find those values?

Upvotes: 0

Views: 93

Answers (1)

Sandrino Di Mattia
Sandrino Di Mattia

Reputation: 24895

These are randomly generated values. Go ahead and generate something random using crypto and enter these there.

Upvotes: 1

Related Questions