POST api/AppBase/LoginCheck
登录验证并获取Token
Request Information
URI Parameters
None.
Body Parameters
JWSAppInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| AppID | string |
None. |
|
| KeyWords | string |
None. |
|
| CDate | date |
None. |
|
| DelFlag | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"AppID": "sample string 2",
"KeyWords": "sample string 3",
"CDate": "2026-02-05T15:29:09.629106+08:00",
"DelFlag": true
}
application/xml, text/xml
Sample:
<JWSAppInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.ViewModel"> <AppID>sample string 2</AppID> <CDate>2026-02-05T15:29:09.629106+08:00</CDate> <DelFlag>true</DelFlag> <ID>1</ID> <KeyWords>sample string 3</KeyWords> </JWSAppInfo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| State | string |
None. |
|
| ErrorCode | ErrorMsgCode |
None. |
|
| ErrorMsg | string |
None. |
|
| DataValue | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"State": "sample string 1",
"ErrorCode": 1001,
"ErrorMsg": "sample string 2",
"DataValue": {}
}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.ViewModel"> <DataValue /> <ErrorCode>PasswordError</ErrorCode> <ErrorMsg>sample string 2</ErrorMsg> <State>sample string 1</State> </Result>