Globus SDK for JavaScript
    Preparing search index...

    Type Alias ConsentRequiredError

    An error that indicates that the user must provide consent for additional scopes.

    • This error typically encountered when interacting with Globus Transfer or Globus Connect Server.
    • Many instances of code: "ConsentRequire" in the Globus platform are being migrated to AuthorizationRequirementsError.
    type ConsentRequiredError = {
        code: "ConsentRequired";
        required_scopes: string[];
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    code: "ConsentRequired"
    required_scopes: string[]