Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook Like button shows the "Confirm" link, but still cannot Like after confirming

About 90% of the time, when I click on the Like button on my website, the confirm link shows up. When I click confirm, the popup appears and I click "Like". However, the confirm link is still there and my Like was not counted. I clicked confirm multiple times, but it still does not work. I refreshed the page many times, and about 10% of the time, the confirm link never shows up and I can Like it normally.

I heard about the Facebook Linter (aka debugger). I "linted" my page and I still cannot Like it.

Here's an example page: http://linksku.com/news/funny/i-like-steve-jobs-less-and-less-the-more-i-read-about-him/ (the bottom portion is loaded in an iframe).

like image 751
Leo Jiang Avatar asked Nov 11 '11 22:11

Leo Jiang


1 Answers

You haven't got the open graph namespace included in your html tag. That might cause weird behaviour. Try updating that to see if anything improves. An example of what it should look like:

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:og="http://ogp.me/ns#"
      xmlns:fb="https://www.facebook.com/2008/fbml">

see documentation.

like image 88
Abby Avatar answered Sep 24 '22 09:09

Abby