POST http://sdk.ddyun.com/api/GetAppsInfo
获取已安装的APP列表
Request Information
URI Parameters
None.
Body Parameters
OrderParam| Name | Description | Type | Additional information |
|---|---|---|---|
| orderid |
订单号 |
integer |
None. |
| appkey |
商户Key |
string |
None. |
| timestamp |
时间戳 |
integer |
None. |
| noncestr |
随机字符,使签名不可预测 |
string |
None. |
| sign |
签名信息 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrderId": 1,
"AppKey": "sample string 2",
"Timestamp": 3,
"NonceStr": "sample string 4",
"Sign": "sample string 5"
}
application/x-www-form-urlencoded
Sample:
OrderId=0&AppKey=&Timestamp=0&NonceStr=&Sign=
multipart/form-data
Sample:
Sample not available.
Response Information
Resource Description
获取已安装的APP列表
SDKBaseResultOfInstalledAppInfo[]| Name | Description | Type | Additional information |
|---|---|---|---|
| data | Collection of InstalledAppInfo |
None. |
|
| code |
错误码 |
SDKResultCode |
None. |
| msg |
错误消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": [
{
"IsSystem": true,
"Name": "sample string 2",
"PackageName": "sample string 3",
"PackagePath": "sample string 4",
"VersionCode": 5,
"VersionName": "sample string 6"
},
{
"IsSystem": true,
"Name": "sample string 2",
"PackageName": "sample string 3",
"PackagePath": "sample string 4",
"VersionCode": 5,
"VersionName": "sample string 6"
}
],
"Code": 0,
"Msg": "sample string 1"
}