1
wanshenmean
2026-03-16 689dd676fc0efb31236d989334122590b7198d61
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@WIDESEAWCS_Server_HostAddress = http://localhost:8099
# For more info on HTTP files go to https://aka.ms/vs/httpfile
 
GET {{WIDESEAWCS_Server_HostAddress}}/api/Scheduler/StartSchedule
Authorization: {{$apiKey}}
 
###
 
POST {{WIDESEAWCS_Server_HostAddress}}/api/User/getVierificationCode
Cntent-Type: application/json
 
###
 
# @name Login
POST {{WIDESEAWCS_Server_HostAddress}}/api/User/login
Content-Type: application/json
Accept: application/json
 
{
  "UserName":"admin",
  "Password": "123456"
}
 
###