token获取
POST
/base/oauth/token
参数不用自己填写,是由前置脚本生成的,测试的时候留空即可#
请求参数
Body 参数application/json
client_id
string
必需
timestamp
string
时间戳
sign
string
必需
示例
{
"client_id": "string",
"timestamp": "string",
"sign": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/base/oauth/token' \
--header 'Content-Type: application/json' \
--data-raw ''
返回响应
🟢200成功
application/json
Body
access_token
string
必需
token_type
string
必需
expires_in
number
必需
errcode
string
操作结果码
description
string
操作描述
示例
{
"errcode": "0000",
"description": "操作成功",
"access_token": "2a4f8fef11653205ad2f01132c37755d",
"token_type": "bearer",
"expires_in": 129600
}
修改于 2024-01-29 06:59:50