设备机型

功能介绍

获取百度移动统计平台的全部设备机型列表

接口

  1. https://openapi.baidu.com/rest/2.0/mtj/svc/config/getDeviceList

请求参数

返回格式

参数名参数类型描述
listarray of device设备机型列表

其中,device对应的结构为:

参数名参数类型描述
idint设备机型id
namestring设备机型名称
platformint设备机型平台(0:安卓,1:IOS)
original_namesarray of stringSDK识别的设备机型原始名称

示例

获取设备机型列表

请求

  1. https://openapi.baidu.com/rest/2.0/mtj/svc/config/getDeviceList

响应

  1. {
  2. "list": [
  3. {
  4. "id": 3,
  5. "name": "Acer beTouch E130",
  6. "platform": 0,
  7. "original_names": [
  8. "E130"
  9. ]
  10. },
  11. {
  12. "id": 8,
  13. "name": "三星I5500(Galaxy 5)",
  14. "platform": 0,
  15. "original_names": [
  16. "Galaxy5",
  17. "GT-I5500L"
  18. ]
  19. },
  20. {
  21. "id": 12,
  22. "name": "阿尔卡特OT-980",
  23. "platform": 0,
  24. "original_names": [
  25. "Alcatel OT-980"
  26. ]
  27. }
  28. ...
  29. ]
  30. }