RefreshOAuthAccessToken
Renews an expired OAuth access token for continued authentication with SharePoint. Helps maintain uninterrupted access to SharePoint services.
Input
| Name | Type | Required | Description |
| OAuthRefreshToken | String | False | The previously issued refresh token that will be used to obtain a new access token without requiring user interaction. |
Result Set Columns
| Name | Type | Description |
| OAuthAccessToken | String | The new authentication token returned from SharePoint. This token is required for making API requests on behalf of the authenticated user or application. |
| OAuthRefreshToken | String | A new refresh token that can be used to obtain future access tokens. This may be the same as the input token or a new one, depending on SharePoint's refresh token policy. |
| ExpiresIn | String | The remaining lifetime of the newly issued access token, in seconds. A value of -1 indicates that the token does not expire. |