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

    Type Alias AuthorizeResult

    AuthorizeResult: {
        code: string;
        codeVerifier: string;
        nonce: string;
        redirectUri: string;
        state: string;
    }

    Result object for the authorization flow. Contains the authorization code, state, and PKCE artifacts when native in_place flow completes successfully.

    Type Declaration

    • code: string
    • codeVerifier: string
    • nonce: string
    • redirectUri: string
    • state: string
    {
    code: 'auth-code-abc123',
    state: 'csrf-state-xyz789',
    codeVerifier: 'code-verifier-123',
    nonce: 'nonce-abc',
    redirectUri: 'https://your-app.com/current-page'
    }