Package version:

Interface AuthenticationRecord

The record to use to find the cached tokens in the cache.

interface AuthenticationRecord {
    authority: string;
    clientId: string;
    homeAccountId: string;
    tenantId: string;
    username: string;
}

Properties

authority: string

Entity which issued the token represented by the domain of the issuer (e.g. login.microsoftonline.com)

clientId: string

The associated client ID.

homeAccountId: string

The home account Id.

tenantId: string

The associated tenant ID.

username: string

The username of the logged in account.