@grabjs/superapp-sdk
    Preparing search index...

    Type Alias GetAuthorizationArtifactsResult

    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'
    }

    No artifacts (null):

    null
    
    type GetAuthorizationArtifactsResult = {
        codeVerifier: string;
        nonce: string;
        redirectUri: string;
        state: string;
    }
    Index

    Properties

    codeVerifier: string

    The code verifier for PKCE.

    nonce: string

    The nonce used in the authorization request.

    redirectUri: string

    The redirect URI used in the authorization request.

    state: string

    The state parameter used in the authorization request.