Google Analytics API如何设置用户的位置

时间:2014-12-04 00:13:08

标签: google-analytics-api

我以扩展方式使用Google AnalyticsAPI。我的页面管理用户所做的很多事件。

由于我完全可以知道用户来自哪里(本地定位广告)我想设置用户的确切位置,因此它会出现在分析中。

这可能吗?

例如它看起来像:

ga('send', 'pageview', {
    'page': '/pagename',
    'location': 'City/district name'
});

这样,我可以告诉我网站上目前有多少客户。

1 个答案:

答案 0 :(得分:0)

Google Analytics(分析)开箱即可检测用户的IP并检测区域/国家/城市。

但是如果你想用你捕获的数据检查一下,我会把它放在一个事件和/或自定义维度中。 e.g。

ga('send', 'event', 'user', 'geolocation', '{{yourLocationVar}}');

Event tracking info here.

Custom dimensions details here,需要更多设置但更好的报告