联网方式
功能介绍
获取百度移动统计平台的全部联网方式列表
接口
https://openapi.baidu.com/rest/2.0/mtj/svc/config/getNetworkList
请求参数
无
返回格式
参数名 | 参数类型 | 描述 |
---|---|---|
list | array of network | 操作系统 |
其中,network对应的结构为:
参数名 | 参数类型 | 描述 |
---|---|---|
id | int | 操作系统id |
name | string | 操作系统名称 |
platform | int | 操作系统平台(0:安卓,1:IOS) |
示例
获取联网方式列表
请求
https://openapi.baidu.com/rest/2.0/mtj/svc/config/getNetworkList
响应
{
"list": [
{
"id": 1,
"name": "2G",
"platform": 1
},
{
"id": 1,
"name": "2G",
"platform": 0
},
{
"id": 2,
"name": "3G",
"platform": 1
},
{
"id": 2,
"name": "3G",
"platform": 0
},
{
"id": 3,
"name": "WIFI",
"platform": 1
},
{
"id": 3,
"name": "WIFI",
"platform": 0
},
{
"id": 4,
"name": "4G",
"platform": 1
},
{
"id": 4,
"name": "4G",
"platform": 0
},
{
"id": 0,
"name": "3G/4G",
"platform": 1
}
]
}