0

我已经实现了一个没有重定向的 GA 实验

<script type="text/javascript">_udn = 'example.com'; _uhash='off';</script>
<script type="text/javascript" src="//www.google-analytics.com/cx/api.js?experiment=ExperimentID"></script>
<script type="text/javascript">var chosenVariation = cxApi.chooseVariation();</script>

<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'AccountID']);
_gaq.push(['_setDomainName', 'example.com']);
_gaq.push(['_setAllowHash', false]);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

我似乎没有任何访问。我遵循的说明在这里是Experiments-client-side

我在这个 类似的问题上遵循了公认的答案

Google 似乎仍然没有收到我的实验访问。

我想知道它是否与使用stats.g.doubleclick.net/dc.js而不是ga.js有关

4

1 回答 1

0

将 ga.src 更改为 ga.js 实验似乎不适用于 stats.g.doubleclick.net/dc.js

ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';

改为

ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';

这个解决方案不是最优的,因为它阻止了我获取人口统计数据,但我现在至少正在获取实验数据。

于 2014-01-09T17:57:15.230 回答