@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}}