Before the token expires, a new token needs to be obtained through the refresh 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 06:46:03