如何在 Facebook 中进行 Google Analytics for ajax 调用?

发布于 2024-09-04 11:37:00 字数 267 浏览 4 评论 0原文

我有一个 FBML 游戏,需要跟踪所有 ajax 调用。

在页面底部,我有这个:

在 javascript 函数中,我输入了以下内容:

Facebook.urchinTracker("/ajaxcallname/");

然而,它不起作用..我发现utmac(谷歌帐户ID)是空的! _uacct 为空!

即使我在FBML中设置它,它仍然是空的!我找不到一种方法来动态设置 _uacct 作为我的谷歌帐户 ID..有人有任何想法吗?

I have a FBML game and need to track all ajax calls.

At the bottom of the page, I have this:

and in the javascript functions, I put this:

Facebook.urchinTracker("/ajaxcallname/");

However, it doesn't work.. and what I found out is that the utmac (the google account id) is empty!!! _uacct is empty!

even I set it in the FBML, it is still empty!! and I can't find a way to dynamically set _uacct be my google account ID.. any one has any idea?

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

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

发布评论

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

评论(2

浅浅淡淡 2024-09-11 11:37:00

您对 ajax 调用的跟踪会在 72 小时后反映在 Google Analytics a/c 中。

不立即。

&另请检查您的 Urchin/Google Analytics 帐户 ID。

Your Tracking of ajax call reflected in Google Analytics a/c after 72 Hrs.

Not Immediately.

& also check Your Urchin/Google Analytics account ID.

_失温 2024-09-11 11:37:00

@seatoskyhk 尝试在您的 html 中使用此 javascript。
也许这个对你有帮助

<脚本类型=“text/javascript”>
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl。" : < a href="http://www">http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js'
type='text/javascript'%3E%3C/script%3E"));

<脚本>类型=“文本/javascript”>
尝试 {
var pageTracker = _gat._getTracker("UA-xxxxxxxx-x");
pageTracker._trackPageview();
}
捕获(错误){}

@seatoskyhk try to use this javascript in your html.
May be this one is helpful for you

< script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js'
type='text/javascript'%3E%3C/script%3E"));
< /script>

< script> type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-xxxxxxxx-x");
pageTracker._trackPageview();
}
catch(err) {}

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