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.

It is possible to change the thumbnail image that users see after hitting a "Like" button on my website without using the Javascript SDK?

I'm currently using this iframe:

<iframe src="http://www.facebook.com/plugins/like.php?href=www.itsmorethanatextbook.com?show_faces=false" 
        scrolling="no" frameborder="0"
        style="border:none; width:450px; height:80px"></iframe>

Hopefully this is a simple question. :)

-Eric

share|improve this question

1 Answer

Try to set

<meta property="og:image" content="http://YOURWESITE.COM/IMAGE.JPG"/>
<meta property="og:title" content="YOUR WEBSITE TITLE"/>
<meta property="og:url" content="http://YOURWESITE.COM/"/>
<meta property="og:type" content="website" />

in your HEADER, after test your web site with https://developers.facebook.com/tools/debug the url linter :)

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.