设备机型
功能介绍
获取百度移动统计平台的全部设备机型列表
接口
https://openapi.baidu.com/rest/2.0/mtj/svc/config/getDeviceList
请求参数
无
返回格式
参数名 | 参数类型 | 描述 |
---|---|---|
list | array of device | 设备机型列表 |
其中,device对应的结构为:
参数名 | 参数类型 | 描述 |
---|---|---|
id | int | 设备机型id |
name | string | 设备机型名称 |
platform | int | 设备机型平台(0:安卓,1:IOS) |
original_names | array of string | SDK识别的设备机型原始名称 |
示例
获取设备机型列表
请求
https://openapi.baidu.com/rest/2.0/mtj/svc/config/getDeviceList
响应
{
"list": [
{
"id": 3,
"name": "Acer beTouch E130",
"platform": 0,
"original_names": [
"E130"
]
},
{
"id": 8,
"name": "三星I5500(Galaxy 5)",
"platform": 0,
"original_names": [
"Galaxy5",
"GT-I5500L"
]
},
{
"id": 12,
"name": "阿尔卡特OT-980",
"platform": 0,
"original_names": [
"Alcatel OT-980"
]
}
...
]
}