Interface OAuth2TokenResponse

Raw OAuth2 token endpoint response shape (RFC 6749 §5.1).

interface OAuth2TokenResponse {
    access_token: string;
    expires_in?: number;
    id_token?: string;
    refresh_token?: string;
    scope?: string;
    token_type?: string;
}

Properties

access_token: string
expires_in?: number
id_token?: string
refresh_token?: string
scope?: string
token_type?: string