cURL
curl --request POST \ --url https://openapi.octoparse.com/token/refresh \ --header 'Content-Type: application/json' \ --data ' { "refresh_token": "<string>", "grant_type": "refresh_token" } '
{ "data": { "access_token": "<string>", "expires_in": 123, "token_type": "<string>", "refresh_token": "<string>" }, "requestId": "<string>" }
Once an Access Token expires, you can refresh it using the refresh_token obtained during the initial token request.
The refresh token from the original token response
Must be refresh_token
refresh_token
"refresh_token"
Token refreshed successfully
Show child attributes