token 过期前,需要通过 refresh token 获取新的 token。
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Request Code Samples
curl --location 'https://ecommerce-api.shanjing-inc.com/rest/taobao-global/auth/token/refresh?refresh_token=undefined' \
--header 'Authorization: Bearer <token>'
Responses
application/json
{
"expires_in": 0,
"account_id": "string",
"user_Id": "string",
"seller_Id": "string",
"short_code": "string",
"account_platform": "string",
"access_token": "string",
"account": "string",
"refresh_token": "string",
"refresh_expires_in": "string",
"error_code": "string"
}
Modified at 2026-03-14 05:37:03