RefreshOAuthAccessToken
Refreshes an expired OAuth Access Token to maintain continuous authenticated access to resources without requiring reauthorization from the user.
Procedure-Specific Information
For example:
EXEC RefreshOAuthAccessToken OAuthRefreshToken = 'refresh_token'
Input
| Name | Type | Required | Description |
| OAuthRefreshToken | String | True | The OAuth Refresh Token obtained during the initial authorization, used to request a new access token when the original has expired. |
Result Set Columns
| Name | Type | Description |
| OAuthAccessToken | String | The short-lived token used to authenticate API requests. |
| OAuthRefreshToken | String | A long-lived token used to request a new access token after the current one expires. |
| ExpiresIn | String | The number of seconds until the access token expires. |