Authorization: Bearer <token> header for all subsequent API requests. Token expires in 30 minutes.curl --location '/auth/token' \
--header 'Content-Type: application/json' \
--data '{
"appId": "your_app_id",
"appSecret": "your_app_secret"
}'{
"code": 200,
"message": "success",
"data": {
"token": "string",
"expireTime": "string"
}
}