POST http://sdk.ddyun.com/api/GetInstallState

获取APP安装状态

Request Information

URI Parameters

None.

Body Parameters

GetInstallStateParam
NameDescriptionTypeAdditional information
apppackagename

APP包名

string

None.

orderid

订单号

integer

None.

appkey

商户Key

string

None.

timestamp

时间戳

integer

None.

noncestr

随机字符,使签名不可预测

string

None.

sign

签名信息

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AppPackageName": "sample string 1",
  "OrderId": 2,
  "AppKey": "sample string 3",
  "Timestamp": 4,
  "NonceStr": "sample string 5",
  "Sign": "sample string 6"
}

application/x-www-form-urlencoded

Sample:
AppPackageName=&OrderId=0&AppKey=&Timestamp=0&NonceStr=&Sign=

multipart/form-data

Sample:

Sample not available.

Response Information

Resource Description

获取APP安装状态

SDKBaseResultOfGetInstallStateResult
NameDescriptionTypeAdditional information
data

GetInstallStateResult

None.

code

错误码

SDKResultCode

None.

msg

错误消息

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": {
    "AppInstallState": 4
  },
  "Code": 0,
  "Msg": "sample string 1"
}