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.

To whom it may concern,

I am an foreign amatuer small restaurant owner and is trying to add a like button on my restaurant website

However, because I have been testing, clicking on my own button many times, now the Like button force anyone who like the page to click on Confirm Link. Can facebook help me remove this Confirm link?

Thanks

share|improve this question

closed as off topic by Mat, Michael Shimmins, Uwe Keim, Jeroen, Graviton Nov 5 '12 at 9:47

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

This is an automatic Like-spam protection from facebook - happens if the Like button gets clicked a lot. Afaik you can increase the chance that it does not happen if you use an App ID for the JavaScript implementation.

Like this:

<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/de_DE/all.js#xfbml=1&appId=xxxxxxxxxxx";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

I would recommend to ALWAYS use an App with any Like button, it´s also in the code generated on the plugin site:

https://developers.facebook.com/docs/reference/plugins/like/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.