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

    Type Alias AuthorizeResult

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

    type AuthorizeResult = {
        code: string;
        codeVerifier: string;
        nonce: string;
        redirectUri: string;
        state: string;
    }
    Index

    Properties

    code: string

    Authorization code returned by the OAuth flow.

    codeVerifier: string

    PKCE code verifier used for token exchange.

    nonce: string

    Nonce value used to bind and validate the authorization response.

    redirectUri: string

    OAuth redirect URI registered for your application.

    state: string

    State value used to correlate and validate the flow.