可投放APP列表
HTTP请求方式
GET
请求地址
https://ms-api.e.360.cn/v1/app/list
字段 |
类型 |
必须 |
描述 |
Content-Type |
string |
yes |
application/x-www-form-urlencoded |
apiKey |
string |
yes |
注册时分配到的api key,该参数作为HTTP HEAD字段传递。 |
accessToken |
string |
yes |
访问token |
请求示例
curl -X GET \
--header 'apiKey:APIKEY' \
--header 'accessToken:ACCESSTOKEN' \
'https://ms-api.e.360.cn/v1/app/list'
返回结果
{
"errno": 10000,
"err_msg": "",
"data": [
{
"id": 12345,
"soft_id": 12345,
"title": "",
"app_name": "360手机助手",
"app_type": 1,
"app_version": "6.2.5"
},
{
"id": 12345,
"soft_id": 12345,
"title": "360安全卫士",
"app_name": "",
"app_type": 2,
"app_version": ""
},
{
"id": 12345,
"soft_id": 12345,
"title": "360智慧商业",
"app_name": "360智慧商业",
"app_type": 3,
"app_version": ""
}
]
}
返回结果说明
字段 |
类型 |
描述 |
id |
Number |
APP ID |
soft_id |
Number |
APP在360手机助手的ID,仅app_type=1或app_type=3时有值 |
title |
String |
app标题 |
app_name |
String |
app名称 |
app_type |
Number |
app类型:1手助app、2官网app、3渠道app |
app_version |
String |
app版本号 |