I am trying to follow the instructions on Google's page regarding Social tracking, but something is off..
Path to like buttons is generated dynamically.
I have a Rails app where I want to integrate tracking of social sharing via Google analytics.
1) I have a file app/assets/javascripts/social-tracking.js
Contents are identical to those in Google's page
I only added a console.log();
_ga.getSocialActionTrackers_ = function(
network, socialAction, opt_target, opt_pagePath) {
return function() {
var trackers = _gat._getTrackers();
console.log(socialAction, "SOCIAL ACTION!");
for (var i = 0, tracker; tracker = trackers[i]; i++) {
tracker._trackSocial(network, socialAction, opt_target, opt_pagePath);
}
};
};
2) I in app/views/layout/application.html.erb
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-123456789']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<body>
....
</body>
<script>
window.fbAsyncInit = function() {
return FB.init({
appId: "12345678910",
channelUrl: "myapplication.herokuapp.com/channel.html",
status: false,
cookie: true,
xfbml: true
});
FB.XFBML.parse(document.getElementById("fbook"));
_ga.trackFacebook();
};
(function(d) {
var id, js, ref;
js = void 0;
id = "facebook-jssdk";
ref = d.getElementsByTagName("script")[0];
if (d.getElementById(id)) {
return;
}
js = d.createElement("script");
js.id = id;
js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
return ref.parentNode.insertBefore(js, ref);
})(document);
</script>
3) Since my like buttons are generated dynamically, I add have the following in app/views/mymodel/show.html.erb :
<div>
<li id ="fbook" >
<fb:like send="false" layout="button_count" width="450" show_faces="false"></fb:like>
</li>
</div>
So when I press "Like" button, nothing happens.
However:
When I load the page, go to console and call _ga.trackFacebook() (which is a function from the .js file mentioned in p.1), I get all the required functionality (i.e. I get the console.log() message).
I realize there is something to do with asynchronous loading. I think I tried all possible variants (even putting ALL the google analytics -related code after initialization of Facebook), but no luck.
Edit
So it turns out if instead of the Facbook-suggested way (with channelURL and window.fbAsyncInit()..) I just put
in front of I manage to get the console.log() message but also get the fb.getloginstatus() called before calling fb.init() error..
Not sure if the info gets pushed to Google analytics though..
