您好,我想使用我的應用程序通過ga.js
創建的一些自定義廣告素材。我使用一些客戶廣告系列和所有廣告系列信息,並創建該廣告系列的哈希代碼並將其放入網址中。我Campaigh URL看起來像設置自定義廣告系列_setCampNameKey不能在Google Analytics中工作ga.js
http://mysite.com/?aff=eyJer5fg4IxOCIsInRleHRfbGlua19pZCI6IjgyIiwiY2FtcGFpZ25faWQiOiIxNCJ9
現在,當用戶登陸mysite.com
我檢查,如果查詢參數aff
存在。如果是,那麼我解碼廣告系列信息並嘗試將其作爲自定義廣告系列發送。我的跟蹤代碼看起來像
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'my profile id']);
_gaq.push(['_trackPageview']);
_gaq.push(['_setDomainName', 'mysite.com']);
<?php
if($this->campaignName != '') {
?>
_gaq.push(['_setCampNameKey','<?php echo $this->campaignName?>']);//my decoded info
_gaq.push(['_setCampMediumKey','<?php echo $this->campaignMedium?>']);//my decoded info
<?php
}
?>
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
但是,當一些用戶通過點擊上面的網址來mysite.com,ga.js
不跟蹤活動。我檢查了我的DOM,_setCampNameKey
已正確呈現。但它需要它作爲推介。任何機構能告訴我我做錯了什麼?這是跟蹤我的自定義廣告系列還是其他方式?
沒有工作尚未 –
看到我更新的答案。 – nwellnhof