I have added facebook like button into my site (xfbml) and all necessary meta tag (app_id, title, type, url, image, site_name, desc) by og. When I clicked the like button, whether I specified the comment or not, I see that the like count is increased but nothing post to my facebook. Until I use the LINT tool to debug, the post appeared as I wanted. So that I think the problem is facebook don't scrape my page at the very first time. I read from developer page:
Facebook scrapes your page every 24 hours to ensure the properties are up to date. The page is also scraped when an admin for the Open Graph page clicks the Like button and when the URL is entered into the Facebook URL Linter.
I have waited more than 24 hours, but nothing happen until I use Linter. But for any link that I have use Linter, facebook like button work perfectly. Can anyone help me with this problem? My site is nearly to be deployed in production, but I can't not solve it. I took me 4 days already.
My site also uses Spring Social to login with facebook authentication.
Here is my code:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : XXXXXXXX,
status : true,
cookie : true,
xfbml : true
});
};
(function(d, debug) {
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" + (debug ? "/debug" : "")
+ ".js";
ref.parentNode.insertBefore(js, ref);
}(document, /*debug*/false));
And in my html:
<fb:like href="http://example.com/abc" send="true" width="460" show_faces="true"></fb:like>
<br /> <br /> <br />
<fb:comments href="http://example.com/abc" num_posts="5" width="460"></fb:comments>
