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've implemented the Like button so many times before but for some reason I'm stuck on this one. I am simply trying to include a like button and nothing else.

It is working fine, when you press the button, all data is pushed to Facebook and it appears in your Likes, but if you refresh the page you liked, the count displayed resets and goes back to 0.

Any idea as to what could be causing this would be a great help!

I've included the SDK as told, and I've added my APP ID (another post had the missing APP ID as a problem solver, but not this time):

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '393548934045727', // App ID
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    // Additional initialization code here
  };

  // Load the SDK Asynchronously
  (function(d){
     var js, 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";
     ref.parentNode.insertBefore(js, ref);
   }(document));
</script>


<div class="fb-like" data-href="{Permalink}" data-send="false" data-layout="box_count" data-width="200" data-show-faces="false"></div>
share|improve this question
what you've tried the way recommended by facebook? developers.facebook.com/docs/reference/plugins/like – Fredy Aug 7 '12 at 1:52
Your code doesn't actually include the code for the like-button itself... – Sean Kinsey Aug 7 '12 at 2:13
I did just include the button code now. {Permalink} passes a URL, and appears to be working fine since it pushes the proper data to my Facebook profile after I Like it, but refresh the page, and the Like count is back to 0. – himynameismarvin Aug 7 '12 at 2:52

closed as too localized by slugster, fglez, darkajax, d_r_w, Pragnani Apr 1 at 18:00

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.