メインコンテンツへスキップ
POST
/
token
/
refresh
リフレッシュトークン
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>"
}

ボディ

application/json
refresh_token
string
必須

最初のトークンレスポンスで取得したリフレッシュトークン

grant_type
string
必須

refresh_tokenを指定してください。

:

"refresh_token"

レスポンス

200 - application/json

トークンの更新に成功しました。

data
object
requestId
string