Interface AccessTokenResponse

interface AccessTokenResponse {
    accessToken: string;
    expiresIn: number;
    scopes: AccessTokenScope[];
    tokenType: "bearer";
}

Properties

accessToken: string

The access token.

expiresIn: number

Token expiration time in seconds.

The list of scopes granted by the token.

tokenType: "bearer"

The token type, always "bearer".