RefreshOAuthAccessToken
Refreshes an expired OAuth Access Token to maintain continuous authenticated access to REST resources without requiring reauthorization from the user.
Input
| Name | Type | Description |
| OAuthRefreshToken | String | A previously issued refresh token used to request a new OAuth access token without requiring user reauthorization. |
Result Set Columns
| Name | Type | Description |
| OAuthAccessToken | String | A newly generated OAuth access token that is required for authenticating API requests to the data source. |
| OAuthAccessTokenSecret | String | A new secret token associated with the OAuth access token, used for OAuth 1.0 authentication. |
| OAuthRefreshToken | String | A newly issued refresh token that can be used to obtain future access tokens. Depending on the provider, this might be the same as the previous refresh token. |
| ExpiresIn | String | The duration (in seconds) before the new access token expires. A value of -1 indicates the token does not expire. |