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 was already working, but today I was surprized, when I tryed to share the link, and Facebook did not show the image, from og:image meta tag.

from facebook debugger:

Meta Tag:   <meta property="og:description" content="Профессиональная сеть вопросов и ответов,создаваемая и управляемая сообществом пользователей. Ресурс для тех, кто хочет знать ответы на все вопросы." />
Meta Tag:   <meta property="og:title" content="Закрытое экспертное сообщество OdinOtvet" />
Meta Tag:   <meta property="og:type" content="website" />
Meta Tag:   <meta property="og:image" content="http://www.odinotvet.ru/images/logo_250.png" />
Meta Tag:   <meta property="og:url" content="http://www.odinotvet.ru" />
Meta Tag:   <meta property="og:site_name" content="ОдинОтвет" />
Meta Tag:   <meta property="fb:app_id" content="286967601317982" />
Meta Tag:   <meta property="fb:admins" content="100002890978393,100001666575542" />

enter image description here

Where is the image?

share|improve this question

2 Answers

up vote 5 down vote accepted

The image is appearing in the Facebook debugger (although it doesn't look great since you've got some transparency which works best with your grey background which FB won't take)

Also its best to use a square image.

One thing I've found it that Facebook caches the meta data on their side. So if we do changes to things like images, they don't always surface until that cache is cleared. Perhaps you had the wrong image url/no url in the past and FB has cached that result. If so you may have to wait a while for it to clear and get your data again. I've seen it take a while (in the approx range of a day)

share|improve this answer
changing from png to gif solved the problem, and the old png was not cached by FB, so I sow results immediately after applying and testing with FB debugger – Alexei May 14 '12 at 5:39
2  
Sticking your URL through the Facebook debugger forces a cache refresh - something to bear in mind if you're impatient! – RiPuk Oct 9 '12 at 1:36
1  
Even that does not refresh the cache all the times – C graphics Apr 8 at 3:22

I had the same problem but FB Debugger "said" that the image has to be at least 200px in both dimensions. When I resized the image to 200px by the shorter side all went well. Another thing is the thing Bruce said - the caching. I had to start another page to test my final link.

Hope this helps. Regards

share|improve this answer
Interestingly facebook ignores the 144x144 png I have in the og:image in favour of the loading spinner.gif that is 16x16 or so. Amusing. Will try 200x200 png, but I bet it just wants .gif, or perhaps the 8-bit transparency on the png is confusing it? – Matt Parkins May 8 at 16: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.