The response from the OAuth token endpoint
access_token
token_type usually "Bearer"
Uses the expires_in value from the /oauth/token endpoint to calculate the validUntil value:
Date.now() + expires_in * 1000 Copy
Date.now() + expires_in * 1000
Generated using TypeDoc
The response from the OAuth token endpoint