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.

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.

share|improve this question
Have you got SSL setup on your localhost? – Lix Jun 20 '12 at 7:20
From localhost you can't do social plugins – Sam Arul Raj Jun 20 '12 at 7:22
@sam - You are 100% wrong my friend. You can most definitely use social plugins locally. – Lix Jun 20 '12 at 7:28
@Lix-I don't know. How to check? – sathish r Jun 20 '12 at 7:29
You can tell if you are using SSL if you are using https and not http. What you might want to try is to explicitly specify loading the SDK over https. Change the url to include the protocol - https://connect.facebook.net/en_US/all.js#xfbml=1 – Lix Jun 20 '12 at 7:30
show 2 more comments

1 Answer

There 2 things to consider here.

  1. have u tried to remove the www from the url.
  2. is the fbid and fbkey configured for the url u specified. https://developers.facebook.com/apps

check your configuration again

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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