联网方式
优质
小牛编辑
124浏览
2023-12-01
功能介绍
获取百度移动统计平台的全部联网方式列表
接口
https://openapi.baidu.com/rest/2.0/mtj/svc/config/getNetworkList?access_token={ACCESS_TOKEN}
请求参数
参数名 | 类型 | 描述 | 样例 |
---|---|---|---|
access_token | string | 用户登入后获取的token | 1.a6b7dbd428f731035f771b8d15063f61.86400.1292922000-2346678-124328 |
返回格式
参数名 | 参数类型 | 描述 |
---|---|---|
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?access_token={ACCESS_TOKEN}
响应
{
"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
}
]
}