谷歌社交互动分析与汤博乐分享按钮

Google Social Interaction Analytics with the Tumblr share button?

本文关键字:汤博乐 分享 按钮 交互 谷歌      更新时间:2023-09-26

有人知道如何使用带有汤博乐分享按钮的谷歌社交互动分析吗?(在我的Wordpress博客上)

我为Facebook和Twitter做过(即:http://visualise.ca/anne-au-cherry)

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

附言:Pinterest按钮怎么样

汤博乐分享按钮没有任何用于完成分享的回调。不过,它只是指向另一个页面的链接。所以,你可以简单地添加点击跟踪:

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

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