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 tried all three different options facebook lets you use when embedding a facebook like button but when I like a page it appears to have added the +1 but when I refresh the page the 'like' doesn't stay. It also doesn't appear in my timeline.

<div class="sm-facebook">
<iframe scrolling="no" frameborder="0" allowtransparency="true" style="border:none; overflow:hidden; width:100px; height:21px;" src="//www.facebook.com/plugins/like.php?href=http://mysite.com/blog/blog-post&amp;send=false&amp;layout=button_count&amp;width=100&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21&amp;appId=277475035619415"></iframe>                
</div>
share|improve this question
if you don't mind the xfbml version, then check out my answer stackoverflow.com/questions/8640392/… , not exactly related to your question, but it might give you some pointers. – bool.dev Jan 3 '12 at 16:00
Ensure the href link you are using is lintable (accessible externally). Try putting it into here and see what it throws out. – nav Jan 3 '12 at 17:16

1 Answer

up vote 0 down vote accepted

http://mysite.com/blog/blog-post is an invalid URL. I get nothing. Try it for yourself at https://developers.facebook.com/tools/debug. It has 1 critical, 1 error and multiple warnings. Fix those up and it should work fine.

share|improve this answer
That was just a sample link. Turns out I was missing fb:admins and fb:app_id from my meta tags. – Tiny Jan 4 '12 at 3:21
Glad you got it figured out. Did the debugger tool help? – DMCS Jan 4 '12 at 3:23

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.