联网方式

功能介绍

获取百度移动统计平台的全部联网方式列表

接口

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

请求参数

返回格式

参数名参数类型描述
listarray of network操作系统

其中,network对应的结构为:

参数名参数类型描述
idint操作系统id
namestring操作系统名称
platformint操作系统平台(0:安卓,1:IOS)

示例

获取联网方式列表

请求

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

响应

  1. {
  2. "list": [
  3. {
  4. "id": 1,
  5. "name": "2G",
  6. "platform": 1
  7. },
  8. {
  9. "id": 1,
  10. "name": "2G",
  11. "platform": 0
  12. },
  13. {
  14. "id": 2,
  15. "name": "3G",
  16. "platform": 1
  17. },
  18. {
  19. "id": 2,
  20. "name": "3G",
  21. "platform": 0
  22. },
  23. {
  24. "id": 3,
  25. "name": "WIFI",
  26. "platform": 1
  27. },
  28. {
  29. "id": 3,
  30. "name": "WIFI",
  31. "platform": 0
  32. },
  33. {
  34. "id": 4,
  35. "name": "4G",
  36. "platform": 1
  37. },
  38. {
  39. "id": 4,
  40. "name": "4G",
  41. "platform": 0
  42. },
  43. {
  44. "id": 0,
  45. "name": "3G/4G",
  46. "platform": 1
  47. }
  48. ]
  49. }