Result object containing the stored PKCE authorization artifacts. These are used to complete the OAuth2 authorization code exchange.
All artifacts present:
{ state: 'csrf-state-xyz789', codeVerifier: 'code-verifier-123', nonce: 'nonce-abc', redirectUri: 'https://your-app.com/callback'} Copy
{ state: 'csrf-state-xyz789', codeVerifier: 'code-verifier-123', nonce: 'nonce-abc', redirectUri: 'https://your-app.com/callback'}
No artifacts (null):
null Copy
null
The code verifier for PKCE.
The nonce used in the authorization request.
The redirect URI used in the authorization request.
The state parameter used in the authorization request.
Result object containing the stored PKCE authorization artifacts. These are used to complete the OAuth2 authorization code exchange.
Example
All artifacts present:
Example
No artifacts (null):