MonoCloud Authentication SDK
    Preparing search index...

    Interface Indicator

    Represents an additional resource indicator that can be requested when acquiring tokens.

    Resource indicators allow access tokens to be scoped to specific APIs or audiences. Multiple indicators can be configured to request tokens for different protected resources during the same authentication flow.

    interface Indicator {
        resource: string;
        scopes?: string;
    }
    Index
    resource: string

    Resource (or space-separated list of resources) the access token should be scoped to.

    scopes?: string

    Optional space-separated list of scopes to request specifically for this resource.