Google Analytics 如何确定“设备类别”(mobile/tablet/desktop)?
How does Google Analytics determine “Device Category” (mobile/tablet/desktop)?
目前,Google Analytics for web 公开了一个设备类别字段,其离散值为 mobile、tablet和 桌面。该界面还允许您更深入地了解它的具体设备。我想 Google 有某种字典可以将这些值相互映射(设备到设备类别,and/or 反之亦然),但我不确定。
最终,我想挂钩这个逻辑并利用它。我想 运行 实验基于设备类别(即 移动 设备,在我的例子中)。有很多答案试图根据用户代理等确定设备类别,但 Google 似乎对此最准确。提前感谢您的想法!
设备类别是从浏览器 'user agent' 字符串中包含的信息中获取的。这本质上是一个代表用户行事的软件。
确实来自用户代理 Header,然后 Google 分析以确定设备、OS 和浏览器版本 。需要指出的一些事情:
处理是在服务器端完成的 (Google) 所以没有办法直接修改那个数据(即使 sending data via the measurement protocol).
Google 未公开处理细节,因此在报告之前您不会知道实验的结果通过 Google Analytics(由于 24-48 hour data processing latency 可能会使此类实验变得乏味)。
- 试图操纵它可能 "break" 您的分析:Google 对此含糊不清,they just say:
"Google has libraries to identify real user agents. Hand crafting your own agent could break at any time"
. 2 consequences I can think of: Google simply drops the traffic if it can't parse the User Agent OR marks it as bot/spider traffic (which will also be dropped if you have enabled the bot filtering option)。
虽然文档中没有提到,我也怀疑Google依赖于其他数据点,可能是:
虽然随着时间的推移,最后一个应该越来越不相关,因为对逐渐消失的支持。
目前,Google Analytics for web 公开了一个设备类别字段,其离散值为 mobile、tablet和 桌面。该界面还允许您更深入地了解它的具体设备。我想 Google 有某种字典可以将这些值相互映射(设备到设备类别,and/or 反之亦然),但我不确定。
最终,我想挂钩这个逻辑并利用它。我想 运行 实验基于设备类别(即 移动 设备,在我的例子中)。有很多答案试图根据用户代理等确定设备类别,但 Google 似乎对此最准确。提前感谢您的想法!
设备类别是从浏览器 'user agent' 字符串中包含的信息中获取的。这本质上是一个代表用户行事的软件。
确实来自用户代理 Header,然后 Google 分析以确定设备、OS 和浏览器版本 。需要指出的一些事情:
处理是在服务器端完成的 (Google) 所以没有办法直接修改那个数据(即使 sending data via the measurement protocol).
Google 未公开处理细节,因此在报告之前您不会知道实验的结果通过 Google Analytics(由于 24-48 hour data processing latency 可能会使此类实验变得乏味)。
- 试图操纵它可能 "break" 您的分析:Google 对此含糊不清,they just say:
"Google has libraries to identify real user agents. Hand crafting your own agent could break at any time"
. 2 consequences I can think of: Google simply drops the traffic if it can't parse the User Agent OR marks it as bot/spider traffic (which will also be dropped if you have enabled the bot filtering option)。
虽然文档中没有提到,我也怀疑Google依赖于其他数据点,可能是:
虽然随着时间的推移,最后一个应该越来越不相关,因为对逐渐消失的支持。