Skip to main content

ChallengedPKCE

A model that Generates A PKCE Challenge Object with the needed requirements.

Properties​

NameTypeDescriptionNotes
var_schemaEmbeddedModelSchema[optional]
statestrAn 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.
noncestrA local key that is held as the comparator to state, thus they should be the same.
challengestrGenerated challenge from the code_verifier.
methodstrMethod used to generate the challenge. The PKCE spec defines two methods, S256 and plain, however, Auth0 supports only S256 since the latter is discouraged.
verifierstrCryptographically random key that was used to generate the code_challenge passed to /authorize.