使用GA事件跟踪的视频跟踪

时间:2012-11-29 18:45:22

标签: google-analytics google-analytics-api vimeo event-tracking

我正在尝试在我的网站上为IFRAME Vimeo视频嵌入设置GA事件跟踪。但是,我无法确定跟踪对象应放在IFRAME代码中的位置/方式。

这是我的IFRAME嵌入代码:

<iframe src="http://player.vimeo.com/video/51447433" width="500" 
  height="281"frameborder="0" webkitAllowFullScreen 
  mozallowfullscreen allowFullScreen></iframe>

以下是我认为 GA Event Tracking代码 的代码:

<a href="#" onClick="_gaq.push(['_trackEvent', 'Videos', 'Play', 'Title']);">Play</a>

我的嵌入代码在哪里?有人可以告诉我这应该是什么样的/工作吗?

2 个答案:

答案 0 :(得分:6)

您需要使用播放器API,因为您无法在第三方域名的iframe中注入代码。

根据为player API提供的文档,应该看起来像这样。

<强> Working Example

<html>
<head>
  <script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-XXXXXX-1']);
  _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);
  })();

</script>
<script>
var f = document.getElementsByTagName('iframe')[0],
    url = f.src.split('?')[0];

// Listen for messages from the player
if (window.addEventListener){
    window.addEventListener('message', onMessageReceived, false);
}
else {
    window.attachEvent('onmessage', onMessageReceived, false);
}

// Handle messages received from the player
function onMessageReceived(e) {
    var data = JSON.parse(e.data);

    switch (data.event) {
        case 'ready':
            onReady();
            break;

        case 'play':
            onPlay();
            break;

        case 'finish':
            onFinish();
            break;
    }
}

// Helper function for sending a message to the player
function post(action, value) {
    var data = { method: action };

    if (value) {
        data.value = value;
    }

    f.contentWindow.postMessage(JSON.stringify(data), url);
}

function onReady() {
    post('addEventListener', 'finish');
    post('addEventListener', 'play');
}


function onFinish() {
    _gaq.push(['_trackEvent', 'Vimeo Video', 'finish', url]);
}

function onPlay() {
    _gaq.push(['_trackEvent', 'Vimeo Video', 'play', url]);
}
</script>
</head>
<body>
  <iframe src="http://player.vimeo.com/video/27855315?api=1" width="400" height="225" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</body>
</html>

通过使用为您提取消息传递API的Vimeo Mogaloop api,可以简化上述代码,但代价是将Javascript加载到库中。

插件准备就绪

请注意,上述代码仅作为示例,如果您在网页上有多个视频,则可能难以正确使用。或者,您也可以使用GAS(我是那里的主要开发人员)库plugin for tracking Vimeo Video

关于兼容性的警告

请注意关于兼容性的警告,我想如果你使用flash方法插入播放器,你可以获得更广泛的浏览器支持但是完全杀掉iOS设备上的播放器:

  

使用Universal Embed Code,与之互动的唯一方式   播放器是使用window.postMessage。 postMessage是一个相对较新的   开发,因此它仅适用于Internet Explorer 8+,Firefox   3 +,Safari 4 +,Chrome和Opera 9 +。

答案 1 :(得分:1)

Google Analytics on Steroids具有跟踪Vimeo的功能。值得入住