Package version:

The configuration settings of the token store.

interface TokenStore {
    azureBlobStorage?: BlobStorageTokenStore;
    enabled?: boolean;
    tokenRefreshExtensionHours?: number;
}

Properties

azureBlobStorage?: BlobStorageTokenStore

The configuration settings of the storage of the tokens if blob storage is used.

enabled?: boolean

true to durably store platform-specific security tokens that are obtained during login flows; otherwise, false. The default is false.

tokenRefreshExtensionHours?: number

The number of hours after session token expiration that a session token can be used to call the token refresh API. The default is 72 hours.