6

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

这是我的IFRAME嵌入代码:

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

以下是我认为GA 事件跟踪代码如下所示:

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

这在我的嵌入代码中的什么位置?有人可以告诉我这应该如何看/工作吗?

4

2 回答 2

6

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

根据为播放器 API提供的文档, t 应该看起来像这样。

工作示例

<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。

插件准备使用

请注意,上面的代码仅作为示例,如果您在一个页面上有多个视频,则可能更难正确处理。或者,您也可以使用具有用于跟踪 Vimeo Video 的插件的GAS(我是那里的主要开发人员)库。

关于兼容性的警告

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

使用通用嵌入代码,与播放器交互的唯一方法是使用 window.postMessage。postMessage 是一个相对较新的开发,因此它仅适用于 Internet Explorer 8+、Firefox 3+、Safari 4+、Chrome 和 Opera 9+。

于 2012-11-29T20:08:32.443 回答
1

Google Analytics on Steroids具有跟踪 Vimeo 的功能。值得检查

于 2012-11-29T20:38:13.397 回答