5

I have problem. When I share my website on fb, it doesn't display image. My code:

  <meta property="og:title" content="Zapust.pl - życie granic wschodnich"/>
  <meta property="og:type" content="article" />
  <meta property="og:url" content="http://zapust.pl"/>
  <meta property="og:image" content="http://zapust.pl/assets/temp.png"/>

I have no app_id. JS code:

    <script>function fbs_click() {u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}</script>
<a rel="nofollow" href="http://www.facebook.com/share.php?u=zapust.pl" onclick="return fbs_click()" target="_blank"><img src="/assets/share-fb-icon.gif"></a>
mitch
  • 2,235
  • 3
  • 27
  • 46
  • 2
    Use linter: http://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fzapust.pl Seems that your image is to small, it must be at least 200px for both height and width – dev-null-dweller Dec 06 '12 at 20:51
  • Thank you very much ! Your comment should be an answer :) – mitch Dec 06 '12 at 21:04

1 Answers1

1

When in doubt, use linter

According to it, your image was to small, it must be at least 200px for both height and width.

dev-null-dweller
  • 29,274
  • 3
  • 65
  • 85