I have included the following code in my jsp page,
<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>
<div class="fb-send" data-href="http://www.172.28.188.com" data-font="tahoma"></div>
But it is not working,I think it is not accepting the data-href as "http://www.172.28.188.com",Please help me to find a solution.
httpsand nothttp. What you might want to try is to explicitly specify loading the SDK overhttps. Change the url to include the protocol -https://connect.facebook.net/en_US/all.js#xfbml=1– Lix Jun 20 '12 at 7:30