搜索
在 系统设置 -> 应用设置中添加应用,选择模块权限,生成 client_id 和 client_secret
client_id
client_secret
POST /open/auth/token
{}
{ "code": 200, "data": { "token": "xxxxxx", "token_type": "Bearer", "expiration": 1237889999 } }
使用上面获取的 token 请求接口,所有模块接口的基础路径为 /open
token
/open
curl 'http://[host]:[port]/open/env?t=1730550435755' \ -H 'Accept: application/json' \ -H 'Authorization: Bearer {token}'