clientID |
String
|
<optional>
|
the Client ID found on your Application settings page |
redirectUri |
String
|
|
url that the Auth0 will redirect after Auth with the Authorization Response |
responseType |
String
|
|
type of the response used by OAuth 2.0 flow. It can be any space separated list of the values code , token , id_token . https://openid.net/specs/oauth-v2-multiple-response-types-1_0.html |
responseMode |
String
|
<optional>
|
how the Auth response is encoded and redirected back to the client. Supported values are query , fragment and form_post . The query value is only supported when responseType is code . https://openid.net/specs/oauth-v2-multiple-response-types-1_0.html#ResponseModes |
state |
String
|
<optional>
|
value used to mitigate XSRF attacks. https://auth0.com/docs/protocols/oauth2/oauth-state |
nonce |
String
|
<optional>
|
value used to mitigate replay attacks when using Implicit Grant. https://auth0.com/docs/api-auth/tutorials/nonce |
scope |
String
|
<optional>
|
scopes to be requested during Auth. e.g. openid email |
audience |
String
|
<optional>
|
identifier of the resource server who will consume the access token issued after Auth |
organization |
String
|
<optional>
|
the Id of an organization to log in to |
invitation |
String
|
<optional>
|
the ID of an invitation to accept. This is available from the user invitation URL that is given when participating in a user invitation flow |
owp |
Boolean
|
<optional>
|
determines if Auth0 should render the relay page or not and the caller is responsible of handling the response. |