Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

http://analytics-api-samples.googlecode.com/svn/trunk/src/tracking/javascript/v5/social/ga_social_tracking.js.

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..

share|improve this question
Seems to be more of a Google Analytics than a Facebook API question – Tommy Crush Dec 10 '12 at 1:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.