You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/providers/auth0.md
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,8 @@ auth: {
11
11
strategies: {
12
12
auth0: {
13
13
domain:'domain.auth0.com',
14
-
client_id:'....'
14
+
client_id:'....',
15
+
audience:'https://my-api-domain.com/'
15
16
}
16
17
}
17
18
}
@@ -30,8 +31,12 @@ User will be redirected to a page like this:
30
31
31
32
💁 This provider is based on [oauth2 scheme](../schemes/oauth2.md) and supports all scheme options.
32
33
33
-
### Obtaining `client_id`and **`domain`**
34
+
### Obtaining `client_id`, `domain`, and `audience`
34
35
35
-
This options are **REQUIRED**. Your application needs some details about this client to communicate with Auth0. You can get these details from the Settings section for your client in the [Auth0 dashboard](https://manage.auth0.com).
36
+
`client_id` and `domain` are **REQUIRED**. Your application needs some details about this client to communicate with Auth0.
37
+
38
+
`audience` is required _unless_ you've explicitly set a default audience [on your Auth0 tenent](https://manage.auth0.com/#/tenant).
39
+
40
+
You can get your `client_id` and `domain` the Settings section for your client in the [Auth0 API dashboard](https://manage.auth0.com/#/applications). Your audience is defined on your [client's API](https://manage.auth0.com/#/apis).
0 commit comments