带有 Tumblr 分享按钮的 Google 社交互动分析?

发布于 2025-01-05 01:51:41 字数 441 浏览 2 评论 0原文

有人知道如何通过 Tumblr 分享按钮使用 Google 社交互动分析吗? (托管在我的 Wordpress 博客上)

我已经为 Facebook 和 Twitter 完成了此操作(即: http:// Visualise.ca/anne-au-cherry

谷歌文档中没有有关的信息:http://code.google.com/apis/analytics/docs/tracking/gaTrackingSocial.html

PS:Pinterest 按钮怎么样? ;-)

Does someone knows how to use Google Social Interaction Analytics with the Tumblr share button? (which is hosted on my Wordpress blog)

I've done it for Facebook and Twitter (i.e: http://visualise.ca/anne-au-cherry)

There is no information about in google's docs : http://code.google.com/apis/analytics/docs/tracking/gaTrackingSocial.html

P.S.: What about the Pinterest button? ;-)

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

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

发布评论

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

评论(1

北座城市 2025-01-12 01:51:41

Tumblr 分享按钮没有任何完成分享的回调。然而,它只是到另一个页面的链接。因此,您可以简单地向其添加点击跟踪:

$(".tumblr a").click(function(){
   _gaq.push(["_trackSocial", "Tumblr", "Click"]);
});

Pinterest Pin It 按钮位于 iframe 中,没有 JS API,没有点击跟踪,没有“on pin”回调。所以,你在跟踪方面迷失了方向。

The Tumblr Share button doesn't have any callbacks for completing the share. However, its just a link to another page. So, you can trivially add click-tracking to it:

$(".tumblr a").click(function(){
   _gaq.push(["_trackSocial", "Tumblr", "Click"]);
});

The Pinterest Pin It button is in an iframe, has no JS API, no click tracking, no "on pin" callback. So, you're lost there in terms of tracking.

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