PeterL
PeterL

Reputation: 2151

Facebook Like button not working [passes facebook lint]

I have a facebook like button on http://www.hotsear.ch, but will not show a user logged in and consequently will not allow the user to log into the website to "like" the page. I put it through the lint checker

https://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.hotsear.ch

When I try to log in it accepts the log in but exits out of the popup and nothing changes. Any ideas? for ease of use this is the code I am using right now.

<meta property="og:title" content="A Hot Google Search Engine" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://www.hotsear.ch"/>
<meta property="og:image" content="http://www.hotsear.ch/images/hotsearch.png" />
<meta property="og:site_name" content="HotSearch" />
<meta property="og:description" content="A google based Search engine with a sizzle." />
<meta property="fb:admins" content="648036240" />

<!--Facebook Code!-->
<div class="facebookposition">
<iframe src="http://www.facebook.com/plugins/like.php?href=www.hotsear.ch&amp;send=false&amp;layout=standard&amp;width=450&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=tahoma&amp;height=35" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:250px; height:35px;"></iframe> </div>
<!--Facebook Code End!-->

Upvotes: 0

Views: 364

Answers (1)

Alex
Alex

Reputation: 126

It works for me, logged in or out.

The code and debugger check out. If it's still not working for you, try the Javascript SDK and HTML5 version. See here for documentation.

P.S. You have an unrelated JS error on your site. Check your browser console.

Upvotes: 1

Related Questions