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'm using facebook like button, after press like button show a window for share content. My content has image and I want to show thumb of that (or just site logo) in facebook time line. How can I do that?

Here is my button configuration

<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/tr_TR/all.js#xfbml=1&appId=<APP_ID>";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

Here is the button

 <div class="fb-like" data-send="false" data-width="450" data-show-faces="true"></div>
share|improve this question

1 Answer

up vote 1 down vote accepted

You just have to use Open Graph Tags on your page, see here: http://ogp.me/

For an image: "og:image". Make sure to use og:title and og:description too.

share|improve this answer
Thanks, I found same solution for this – Seyhan Dec 26 '12 at 12:17

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.