POST api/AppAccess

App访问记录

Request Information

URI Parameters

None.

Body Parameters

AppAccessModel
NameDescriptionTypeAdditional information
IsIos

是否是苹果,1是,0是安卓

integer

None.

OsInfo

系统软件信息

string

None.

MachineInfo

机器信息

string

None.

KeyNo

唯一ID

string

None.

mobile

手机号

string

None.

Request Formats

application/json, text/json

Sample:
{
  "IsIos": 1,
  "OsInfo": "sample string 2",
  "MachineInfo": "sample string 3",
  "KeyNo": "sample string 4",
  "mobile": "sample string 5"
}

application/xml, text/xml

Sample:
<AppAccessModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Controllers">
  <IsIos>1</IsIos>
  <KeyNo>sample string 4</KeyNo>
  <MachineInfo>sample string 3</MachineInfo>
  <OsInfo>sample string 2</OsInfo>
  <mobile>sample string 5</mobile>
</AppAccessModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BackMessage
NameDescriptionTypeAdditional information
sign

标志

boolean

None.

message

信息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "sign": true,
  "message": "sample string 2"
}

application/xml, text/xml

Sample:
<BackMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <message>sample string 2</message>
  <sign>true</sign>
</BackMessage>