我们目前正在尝试将用户数据库与Google Analytics中的信息进行匹配,我们希望将其用户ID推送到GA,以便我们可以检索有关用户的数据。
我们目前正在使用此代码,但似乎我们无法使用此新的user_id自定义维度正确获取报告。
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-xxxxx-1', 'auto');
ga('require', 'displayfeatures');
var dimensionValue = 'xxxxx'; //contains the user id
ga('set', 'user_id', dimensionValue);
ga('send', 'pageview');
</script>
Here is how it's setup on Google Analytics
And here is currently what we can see on Google Analytics
“74”值绝对不对,我不知道它来自何处。
或者我们希望将我们的用户ID与他们的获取源(他们在到达我们的网站时首先来自哪里)相匹配,所以我想我们需要做一些像“会话统一”这样的事情。但是,Google Analytics Universal的内置User-Id功能似乎不允许检索实际的用户ID值。
如果有任何办法,我们可以接受建议。如果您有实施这个或任何想法我们应该研究什么解决方案的经验,那将非常感激。
谢谢。
答案 0 :(得分:1)
要将其设置为custom dimension,您需要使用dimension#
而非您在Google Analytics帐户中为该维度提供的名称。
例如:
var dimensionValue = 'xxxxx'; //contains the user id
ga('set', 'dimension1', dimensionValue);
在为自定义维度而非使用UserId feature设置此项时,您无需担心丢失源归因的问题。 (出于这个原因,我也使用自定义维度而不是UserId功能。)