Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface ClientJwtConfiguration

    Configuration related to JWTs for the client.

    interface ClientJwtConfiguration {
        lifetime_in_seconds?: number;
        secret_encoded?: boolean;
        scopes?: ClientJwtConfigurationScopes;
        alg?: Management.SigningAlgorithmEnum;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Accepts any additional properties

    Index

    Properties

    lifetime_in_seconds?: number

    Number of seconds the JWT will be valid for (affects exp claim).

    secret_encoded?: boolean

    Whether the client secret is base64 encoded (true) or unencoded (false).