1

我的目标是使用 analytics.js 库设置一些活动。一切正常,除了当我转到流量来源/来源并查看所有流量或深入了解广告系列时,我看到的是我正在跟踪的网址,而不是我希望的命中来源(推荐人)。这是我的代码:

(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','__gapmi');
var ref = document.referrer;
var url = document.URL;
__gapmi('create', 'UA-xxxxxxxx-1',{'alwaysSendReferrer': true});
__gapmi('set', 'campaignName', 'campaign');
__gapmi('set', 'campaignId', 'campaign');
__gapmi('set', 'referrer', ref);
__gapmi('send', 'pageview');
4

1 回答 1

3

_setCampSourceKey() 用于目的.. setCampSourceKey(newCampSrcKey) 设置活动源键,用于从 URL 中检索活动源。“来源”在广告系列报告中显示为细分选项。

例如,假设您在另一个网站上有一个广告,此 URL 指向您的网站: http: //mysite.net/index.htmlsource=giganoshopper.com&utm_medium=referral&utm_campaign=Christmas+specials&utm_content=Garden+gloves 在此 URL 中,键“ source”在 URL 中描述了该营销活动的来源。

异步片段(推荐) _gaq.push(['_setCampSourceKey', 'source']);

传统 (ga.js) 片段参数 String newCampSrcKey要设置的活动源密钥

于 2013-06-07T04:56:22.057 回答