{
"refresh_token": "your_refresh_token"
}
curl --location --request GET '/adminapi/login/refresh_token' \
--header 'access-token: {{access-token}}' \
--header 'refresh-token: {{refresh-token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"refresh_token": "your_refresh_token"
}'
{
"code": 200,
"msg": "操作成功",
"data": {
"token": "new_jwt_token"
}
}