Libraries
    Preparing search index...

    Interface AuthenticationConfig

    Authentication configuration passed to ServerBuilder.useAuthentication().

    At least one scheme must be listed. The defaultScheme name must match one of the registered scheme name values — it is used when no specific scheme is requested.

    interface AuthenticationConfig {
        defaultScheme: string;
        schemes: AuthenticationScheme<any>[];
    }
    Index

    Properties

    defaultScheme: string

    Name of the default scheme to use (must match a scheme's name).

    schemes: AuthenticationScheme<any>[]

    Registered authentication schemes.