Skip to main content

SeededPKCE

Properties

NameTypeDescriptionNotes
responseTypeinlineIndicates to Auth0 which OAuth 2.0 Flow you want to perform. Use code for Authorization Code Grant (PKCE) Flow.
statejava.util.UUIDAn opaque value the clients adds to the initial request that Auth0 includes when redirecting the back to the client. This value must be used by the client to prevent CSRF attacks.
noncejava.util.UUIDA local key that is held as the comparator to state, thus they should be the same.
codeChallengekotlin.StringGenerated challenge from the code_verifier.
codeChallengeMethodinlineMethod used to generate the challenge. The PKCE spec defines two methods, S256 and plain, however, Auth0 supports only S256 since the latter is discouraged.
scopeinlineThe scopes which you want to request authorization for. These must be separated by a space. You can request any of the standard OpenID Connect (OIDC) scopes about users, such as profile and email, custom claims that must conform to a namespaced format, or any scopes supported by the target API (for example, read:contacts). Include offline_access to get a Refresh Token.
clientIdkotlin.StringYour application's Client ID.
schemaEmbeddedModelSchema[optional]
redirectUrijava.net.URIhttp://localhost:8080/authentication/response[optional]
domainjava.net.URIhttps://auth.pieces.services/authorize[optional]
audiencejava.net.URIThe unique identifier of the target API you want to access. i.e. https://pieces.us.auth0.com/api/v2/[optional]
screenHintinlineProvides a hint to Auth0 as to what flow should be displayed. The default behavior is to show a login page but you can override this by passing 'signup' to show the signup page instead.[optional]
promptinlineTo initiate a silent authentication request, use prompt=none (see Remarks for more info).[optional]
organizationkotlin.String[optional]
invitationkotlin.String[optional]
ADDITIONAL_PARAMETERSSeededPKCEADDITIONALPARAMETERS[optional]
responseModeinline[optional]

Enum: response_type

NameValue
responseTypecode, token, id_token

Enum: code_challenge_method

NameValue
codeChallengeMethodS256

Enum: scope

NameValue
scopeoffline_access, email, profile, openid

Enum: screen_hint

NameValue
screenHintsignup

Enum: prompt

NameValue
promptlogin, none

Enum: response_mode

NameValue
responseModeform_post, web_message, fragment, query