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>" }
認証トークンが期限切れになると、レスポンス内のrefresh_tokenを使用して認証トークンを更新できます。
refresh_token
最初のトークンレスポンスで取得したリフレッシュトークン
refresh_tokenを指定してください。
"refresh_token"
トークンの更新に成功しました。
Show child attributes