Member Junction
    Preparing search index...

    Result from completing OAuth authorization

    interface CompleteAuthorizationResult {
        errorCode?: string;
        errorMessage?: string;
        isRetryable: boolean;
        success: boolean;
        tokens?: OAuthTokenSet;
    }
    Index

    Properties

    errorCode?: string

    Error code from authorization server

    errorMessage?: string

    Error message if failed

    isRetryable: boolean

    Whether the error is retryable

    success: boolean

    Whether completion succeeded

    tokens?: OAuthTokenSet

    Token set if successful