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

    Type Alias GetAuthorizationArtifactsResult

    GetAuthorizationArtifactsResult: {
        codeVerifier: string;
        nonce: string;
        redirectUri: string;
        state: string;
    }

    Result object containing the stored PKCE authorization artifacts. These are used to complete the OAuth2 authorization code exchange.

    Type Declaration

    • codeVerifier: string
    • nonce: string
    • redirectUri: string
    • state: string

    All artifacts present:

    {
    state: 'csrf-state-xyz789',
    codeVerifier: 'code-verifier-123',
    nonce: 'nonce-abc',
    redirectUri: 'https://your-app.com/callback'
    }