获取系统授权token,有效时间30分钟
GET
/auth/token几乎所有接口要使用该接口获取的token值,将Bearer {token}作为header中Authorization进行访问请求
请求参数
Query 参数
client_id
string
必需
client_secret
string
必需
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
data
object
必需
token
string
必需
token_type
string
必需
expiration
integer
必需
示例
{
"code": 200,
"data": {
"token": "de050b5a-c6f8-634b-042f-a33eee657752",
"token_type": "Bearer",
"expiration": 1701757930
}
}
最后修改时间: 1 年前