I want to place a facebook like button on my asp.net web page. I have generated code from facebook like button plugin https://developers.facebook.com/docs/reference/plugins/like/
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<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";
fjs.parentNode.insertBefore(js, fjs);
} (document, 'script', 'facebook-jssdk'));</script>
<form id="form1" runat="server">
<div>
<div class="fb-like" data-href="http://www.facebook.com/dotnetspider" data-send="true"
data-width="450" data-show-faces="true">
</div>
</div>
</form>
</body>
</html>
Link Button is generated properly and number of people liking the page is also shown. I am already logged in an facebook account. But When I click on like button the button turns in to red color link with text "error". The popup opened show following error :
You can't post this because it has a blocked link.: The content you're trying to share includes a link that's been blocked for being spammy or unsafe:Body of an error/warning message. Title is: You can't post this because it has a blocked link.For more information, visit the Help Center. If you think you're seeing this by mistake, please let us know.
It simple code but its not working... Any help will be appreciated