You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
632 B
23 lines
632 B
@CellularManagement.WebAPI_HostAddress = http://localhost:5202
|
|
|
|
### 获取天气预测
|
|
GET {{CellularManagement.WebAPI_HostAddress}}/weatherforecast/
|
|
Accept: application/json
|
|
|
|
### 用户认证
|
|
# @name login
|
|
POST {{CellularManagement.WebAPI_HostAddress}}/api/auth/login
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"username": "admin",
|
|
"password": "admin123"
|
|
}
|
|
|
|
### 获取用户信息
|
|
GET {{CellularManagement.WebAPI_HostAddress}}/api/users/me
|
|
Authorization: Bearer {{login.response.body.token}}
|
|
|
|
### 获取系统状态
|
|
GET {{CellularManagement.WebAPI_HostAddress}}/api/system/status
|
|
Authorization: Bearer {{login.response.body.token}}
|
|
|