1

每个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

4

2 回答 2

1

请参阅 api 文档页面:“该组中的所有维度均来自每个 HTTP 跟踪请求的 HTTP User-Agent 字符串集合。”

https://developers.google.com/analytics/devguides/reporting/core/dimsmets#view=detail&group=platform_or_device&jump=ga_devicecategory

于 2014-06-04T21:09:45.347 回答
0

Android 开发者在使用测量协议时也有同样的需求。要在 Android 上执行此操作,只需将用户代理添加到帖子中:

HttpPost httpPost = new HttpPost(uri);
httpPost.setHeader("User-Agent", System.getProperty("http.agent"));
于 2013-06-20T19:56:25.240 回答