...
| Code Block |
|---|
POST {host}/Rest/Logon |
...
Request-Body参数
| 参数名 | 参数类型 | 是否必填 | 描述 |
|---|---|---|---|
| username | string | 是 | 用户名登录名/邮箱/手机号 |
| password | string | 是 | 登录密码 |
请求实例:
| Code Block | ||
|---|---|---|
| ||
{
"password": "minyifei001@",
"username": "myftest"
} |
返回结果
| Code Block | ||
|---|---|---|
| ||
{
"http_code": 200,
"data": {
"token": "238a9c658a2c58291228d3b365a0cc36e66a962a",
"isWeakPassword": false
},
"status": [
10106001
]
} |
...