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

    Type Alias AuthorizeResult

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

    {
    code: 'auth-code-abc123',
    state: 'csrf-state-xyz789'
    }
    type AuthorizeResult = {
        code: string;
        state: string;
    }
    Index

    Properties

    Properties

    code: string

    The authorization code returned from the server.

    state: string

    The state parameter returned from the server for CSRF protection.