POST api/Login/AnonymousLogin
匿名登錄
Request Information
URI Parameters
None.
Body Parameters
LoginAPI_Input| Name | Description | Type | Additional information |
|---|---|---|---|
| userId |
用戶登錄名 |
string |
Required |
| password |
密碼 |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"userId": "sample string 1",
"password": "sample string 2"
}
text/html
Sample:
{"userId":"sample string 1","password":"sample string 2"}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
匿名登錄
LoginAPI_Output| Name | Description | Type | Additional information |
|---|---|---|---|
| Ticket |
身份票據 |
string |
None. |
| status |
登入狀態(0:系統錯誤1:登入成功) |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Ticket": "sample string 1",
"status": 2
}
text/html
Sample:
{"Ticket":"sample string 1","status":2}