Google Analytics(分析)实验 - 获取实验变体

时间:2013-06-19 18:06:43

标签: events google-analytics ab-testing google-experiments

我正在测量两个网站之间的转化率 - 一个网站(abc.com)有一个iframe,其中包含另一个网站(cde.com)的注册表单。我需要测量REAL转换率,这意味着只能成功注册。为此,我使用服务器端谷歌分析库(https://github.com/dancameron/server-side-google-analytics),在注册成功完成时设置事件。

我必须使用事件,因为我没有thankyou.html页面,其他应用程序完全基于ajax。 使用cde.com作为thankyou.html页面可以得到98%的转换数字,这不太准确。除此之外,我只需要跟踪来自abc.com的注册。

我能够实现事件跟踪,但现在我不知道,如何设置事件的方式告诉GA它来自abc.com的某个变体。

这是设置事件的代码。参数类似于_gaq.push()

$ssga->set_event( "Category", 'Created an account' );
$ssga->send();

1 个答案:

答案 0 :(得分:2)

使用查询字符串将信息从abc.com传递到cde.com:

<iframe src="cde.com?variation=1"></iframe>

然后在cde.com表格中包含该信息:

if (isset($_GET['variation'])) {
    echo '<input type="hidden" name="variation" value="' . $_GET['variation'] . '" />';
}

然后在您的事件发送代码中,包含变体信息:

if (isset($_POST['variation'])) {
    if ($_POST['variation'] == 2) {
        $ssga->set_event( "Category", 'Created an account', 'Variation 2' );
    }
    else $ssga->set_event( "Category", 'Created an account', 'Variation 1' );
}
else $ssga->set_event( "Category", 'Created an account, 'Variation 1' );
$ssga->send();