我一直在尋找的跟蹤代碼Google Analyticator產生,我注意到行什麼是Google Analytics中的_addDevId?
_gaq.push(['_addDevId', 'i9k95']); // Google Analyticator App ID with Google
但是,我找不到任何地方在谷歌的官方文檔,_addDevId
任何引用,以及谷歌搜索返回什麼,但隨機碼snippits(其中大部分使用谷歌分析器的ID。)
這是什麼,是否有一個analytics.js等效?
下面是完整的生成代碼:
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXX-1']);
_gaq.push(['_addDevId', 'i9k95']); // Google Analyticator App ID with Google
_gaq.push(['_trackPageview']);
(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);
})();
哪裏得到這個代碼? –
它位於運行Google Analyticator的wordpress網站的標題中。 –