MonoCloud Authentication SDK
    Preparing search index...

    Options to initialize the MonoCloudClient

    interface MonoCloudClientOptions {
        clientAuthMethod?: ClientAuthMethod;
        clientSecret?: string | Jwk;
        idTokenSigningAlgorithm?: JWSAlgorithm;
        jwksCacheDuration?: number;
        metadataCacheDuration?: number;
    }
    Index

    Properties

    clientAuthMethod?: ClientAuthMethod

    Client authentication method

    clientSecret?: string | Jwk

    Client secret used for authentication.

    When the client authentication method is client_secret_jwt and a plain-text secret is provided, the default signing algorithm is HS256.

    To use a different algorithm, supply a symmetric JSON Web Key (JWK) object (kty = "oct") that specifies the desired algorithm in its alg property.

    idTokenSigningAlgorithm?: JWSAlgorithm

    ID token signing algorithm.

    - RS256
    
    jwksCacheDuration?: number

    Jwks Cache Duration

    Time in seconds to cache the JWKS document after it is fetched

    60
    
    metadataCacheDuration?: number

    Metadata Cache Duration

    Time in seconds to cache the metadata document after it is fetched.

    60