I have recently implemented the Facebook Like Button
I have chosen some settings (for the HTML5 implementation) and facebook gave me the following code:
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=*my-app-id*";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
and
<div class="fb-like"
data-href="*http://my-domain.com/page/uri*"
data-send="false"
data-layout="button_count"
data-width="50"
data-show-faces="false"
></div>
I have implemented this code on my public website.
When I click the button it changes the button to the "liked" state and shows a dialog that I can use to post to my wall.
The wallpost works fine (and Facebook manages to extract the Open Graph meta tags from the page like image, title, url and so on...) when I refresh the page, the buttons shows up as one like, but when I visit the same url with another browser and facebook account the like button indicates that the page is not liked by anyone.
If I then check my https://graph.facebook.com/me/likes in Graph API Explorer the like does not show up in the list.
I have also tried to use Facebook's Debugger to make Facebook refresh the data for the url as I found on http://www.allwebmaster.com/2011/07/fix-facebook-like-button-not-working/ but that did not seem to help.
So the wallpost works but the like does not, why is that? What can I do to make it work?
Update: now I have a few likes on some of the pages but it does not correspond to the number of accounts that has liked that url...
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=*my-app-id*";– Awais Qarni Nov 1 '11 at 13:39