RefreshOAuthAccessToken
Refreshes an expired OAuth Access Token to maintain continuous authenticated access to GitHub resources without requiring reauthorization from the user.
Input
Name | Type | Description |
OAuthRefreshToken | String | The OAuth Refresh Token received with the initial access token, used to request a new access token. |
Result Set Columns
Name | Type | Description |
OAuthAccessToken | String | The new OAuth Access Token to be included in requests for accessing protected resources. |
OAuthRefreshToken | String | The new OAuth Refresh Token to be used for requesting another access token when the current one expires. |
ExpiresIn | String | The time in seconds until the new access token expires. The default is 1440 seconds (24 minutes). |