Package
google-auth-library!Properties
access_token
access_token?: string | null;
A token that can be sent to a Google API.
Type | Description |
string | null |
expiry_date
expiry_date?: number | null;
The time in ms at which this token is thought to expire.
Type | Description |
number | null |
id_token
id_token?: string | null;
A JWT that contains identity information about the user that is digitally signed by Google.
Type | Description |
string | null |
refresh_token
refresh_token?: string | null;
This field is only present if the access_type parameter was set to offline in the authentication request. For details, see Refresh tokens.
Type | Description |
string | null |
scope
scope?: string;
The scopes of access granted by the access_token expressed as a list of space-delimited, case-sensitive strings.
Type | Description |
string |
token_type
token_type?: string | null;
Identifies the type of token returned. At this time, this field always has the value Bearer.
Type | Description |
string | null |