Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每个https://developers.google.com/analytics/devguides/collection/protocol/v1/parameters?hl=en-US没有这样的参数。在 ga.js 中,它是 ga:mobileDeviceModel。 https://developers.google.com/analytics/devguides/reporting/core/dimsmets/platform#ga:mobileDeviceModel
请参阅 api 文档页面:“该组中的所有维度均来自每个 HTTP 跟踪请求的 HTTP User-Agent 字符串集合。”
https://developers.google.com/analytics/devguides/reporting/core/dimsmets#view=detail&group=platform_or_device&jump=ga_devicecategory
Android 开发者在使用测量协议时也有同样的需求。要在 Android 上执行此操作,只需将用户代理添加到帖子中:
HttpPost httpPost = new HttpPost(uri); httpPost.setHeader("User-Agent", System.getProperty("http.agent"));