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

    Interface ClientRefreshTokenConfiguration

    Refresh token configuration

    interface ClientRefreshTokenConfiguration {
        rotation_type: Management.RefreshTokenRotationTypeEnum;
        expiration_type: Management.RefreshTokenExpirationTypeEnum;
        leeway?: number;
        token_lifetime?: number;
        infinite_token_lifetime?: boolean;
        idle_token_lifetime?: number;
        infinite_idle_token_lifetime?: boolean;
    }
    Index

    Properties

    leeway?: number

    Period in seconds where the previous refresh token can be exchanged without triggering breach detection

    token_lifetime?: number

    Period (in seconds) for which refresh tokens will remain valid

    infinite_token_lifetime?: boolean

    Prevents tokens from having a set lifetime when true (takes precedence over token_lifetime values)

    idle_token_lifetime?: number

    Period (in seconds) for which refresh tokens will remain valid without use

    infinite_idle_token_lifetime?: boolean

    Prevents tokens from expiring without use when true (takes precedence over idle_token_lifetime values)