OAuth flow
Below is a description of each step in the OAuth authorization code flow (and refresh token flow).
Initialize OAuth flow.
Request Body
Name
Type
Description
{
"access_token": "k5XBpu3GGIAgSpm4Z4Al8nDsWLkvF0",
"expires_in": 36000,
"token_type": "Bearer",
"scope": "read write",
"refresh_token": "88eoh1kVZFQcVEX0Zz29Urd4IQ6G2r"
}{
"error": "invalid_grant",
"error_description": "Invalid credentials given."
}Example

Last updated