Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When you share a link on facebook it will automatically find images on the website and randomly picks one as a preview. How can you influence the preview image? When a person shares the website link on his facebook?

share|improve this question

1 Answer

up vote 18 down vote accepted

1. Include the open graph and fbml xml namespace extensions to your html declaration

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:og="http://ogp.me/ns#"
      xmlns:fb="https://www.facebook.com/2008/fbml">

2. Inside your <head></head> use the following meta tag to define the image you want to use

<meta property="og:image" content="your_image_here" />

Read more about open graph protocol here.

share|improve this answer
Does facebook cache the images on the website? I have tried to set these settings, and FB does not want to use my default image. Instead it finds some old images that where on the site yesterday. – Martin Dec 1 '11 at 20:55
2  
@Martin I am not aware. Maybe they do, but I don't see it mentioned in the Open Graph Protocol Docs. Try the Debugger to see if the cached values are shown for your site. There seems to be another question on SO titled Facebook Open Graph not clearing cache related to this issue. – Shef Dec 1 '11 at 22:54
Comment by @KDog: Having Problems? Check your codes at facebook debug tool. Facebook cache image, title, and body text. I changed the title while adding xml to my web site and because I accidentally created few validation errors, nothing was change in Facebook's share preview. Facebook used a valid cache instead of showing the invalided new data. I was able to resolve these errors using developers.facebook.com/tools/debug. After doing so, my new title and images shows right away. – Jeremy Thompson Jan 21 at 5:06
@Shef Does this solution extend to Like buttons too? – sємsєм Jan 31 at 23:50
1  
@sємsєм Yes, it does, along with other og meta tags. – Shef Feb 1 at 7:27

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.