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.

This is really strange and makes me sleepless

The source code is written out like this:

<meta property="og:image" content="http://www.aveny.se/wp-content/uploads/2011/11/jafar_utvald-150x150.jpg" />

(the image exists, did check!) But a totally different image is posted on facebook.

The SDK is written directly after the <body> tag.

I have the right fb-like code.

share|improve this question
To check a post aveny.se/?reportage=varldens-top-5-bistros-2 – Pierre Wiberg Nov 25 '11 at 18:35

1 Answer

I had the same problem with the facebook graph api. The first you should know is when somebody shared your link, facebook will crawl your site for the og:image tag. If it doesn't find them, will select an image found on your site. After the first share, facebook will save that images, so if you added the code after the fisrt share, it's useless. You can try it with another post. The second issue is to add

<link href="http://www.aveny.se/wp-content/uploads/2011/11/jafar_utvald-150x150.jpg" rel="image_src"/>

to your source code. This solved my problem. I hope you can solve it too!

share|improve this answer
It will be good to place in the <head> tag btw. – Pmillan Nov 25 '11 at 21:22

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.