gpt4 book ai didi

events - Google Analytics Experiments - 获取实验变体

转载 作者:行者123 更新时间:2023-12-03 15:30:31 27 4
gpt4 key购买 nike

我正在测量两个站点之间的转化率 - 一个站点 ( abc.com ) 有一个 iframe,其中包含来自另一个站点 ( cde.com ) 的注册表。我需要衡量真正的转化率,这意味着只有成功的注册。为此,我使用服务器端谷歌分析库( 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();

最佳答案

使用查询字符串将信息从 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();

关于events - Google Analytics Experiments - 获取实验变体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17198236/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com