@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.

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

    Properties

    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.