将流量信息发送到另一个 Google Analytics 帐户

发布于 2024-12-03 15:58:24 字数 145 浏览 0 评论 0原文

我们的网站有附属机构带来的流量。他们将流量发送到我们制作的自有品牌(我们网站上的新皮肤)。

我们通过 GA 跟踪我们的用户。他们希望访问其自有品牌上的用户数据。

有没有一种方法可以让我们自动将其提供给他们?最好让它与他们现有的跟踪数据一起显示?

We have traffic being driven to our site by an affiliate. They send traffic to a private label we made (a new skin on our site).

We track our users via GA. They would like access to the data for users on their private label.

Is there a way that we can automatically provide this to them? Preferably so that it shows up with their existing tracking data?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如歌彻婉言 2024-12-10 15:58:24

您只需添加其他帐户信息即可。我过去曾成功地做到过这一点。您只需正确设置标记即可。

<script type="text/javascript">
var _gaq = _gaq || [];

_gaq.push(['UA_123456_1._setAccount', 'UA-123456-1']);
_gaq.push(['UA_123456_1._setDomainName', '.example.com']);
_gaq.push(['UA_123456_2._setAccount', 'UA-123456-2']);
_gaq.push(['UA_123456_2._setDomainName', '.example.com']);

_gaq.push(['UA_123456_1._trackPageview']);
_gaq.push(['UA_123456_2._trackPageview']);

</script>

You could just add the other account information. I have done this successfully in the past. You just have to set up your markers correctly.

<script type="text/javascript">
var _gaq = _gaq || [];

_gaq.push(['UA_123456_1._setAccount', 'UA-123456-1']);
_gaq.push(['UA_123456_1._setDomainName', '.example.com']);
_gaq.push(['UA_123456_2._setAccount', 'UA-123456-2']);
_gaq.push(['UA_123456_2._setDomainName', '.example.com']);

_gaq.push(['UA_123456_1._trackPageview']);
_gaq.push(['UA_123456_2._trackPageview']);

</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文