...
The response should contain:
access_token
: the access token.expires_in
: the expiration delay of the access token (in seconds).refresh_token
: the refresh token.refresh_expires_in
: the expiration delay of the refresh token (in seconds).
Refresh the access token
When the access token expires, you can use the refresh token to obtain a new access token:
...
The response should contain:
access_token
: the new access token.expires_in
: the expiration delay of the new access token (in seconds).refresh_token
: the new refresh token.refresh_expires_in
: the expiration delay of the new refresh token (in seconds).
If the refresh token has expired, you need to request a new access token using your credentials again.
...