When using Facebook Sharer, Facebook will offer the user the option of using 1 of a few images pulled from the source as a preview for their link. How are these images selected, and how can I ensure that any particular image on my page is always included in this list?

link|improve this question

It does indeed work when using the meta property, but it is invalid html, which I find very strange! Try running it through a validator and you will see. It baffles me why on earth they cannot get this to work with valid html?? – user501071 Nov 8 '10 at 19:27
1  
see developers.facebook.com/docs/opengraph <html xmlns:og="opengraphprotocol.org/schema/"; ... – cope360 Nov 10 '10 at 0:09
Tip- after making changes.. Run your page through the linter and facebook will update the thumbnails, etc for that page developers.facebook.com/tools/lint – user746072 May 10 '11 at 2:57
feedback

6 Answers

up vote 57 down vote accepted

How do I tell Facebook which image to use when my page gets shared?

Facebook has a set of open-graph meta tags that it looks at to decide which image to show. The key one for the Facebook image is: <meta property="og:image" content="http://ia.media-imdb.com/rock.jpg"/> and it should be present inside the <head></head> tag at the top of your page. If these tags are not present, it will look for their older method of specifying an image: <link rel="image_src" href="/myimage.jpg"/>. If neither are present, Facebook will look at the content of your page and choose images from your page that meet its share image criteria: Image must be at least 50px by 50px, have a maximum aspect ratio of 3:1, and in PNG, JPEG or GIF format.

Can I specify multiple images to allow the user to select an image?

Yes, you just need to add multiple image meta tags in the order you want them to appear in. The user will then be presented with an image selector dialog:
Facebook Image Selector

I specified the appropriate image meta tags. Why isn't Facebook accepting the changes?

Once a url has been shared, Facebook's crawler, which has a user agent of facebookexternalhit/1.1 (+https://www.facebook.com/externalhit_uatext.php), will access your page and cache the meta information. To force Facebook servers to clear the cache, use the Facebook Url Debugger / Linter Tool that they launched in June 2010 to refresh the cache and troubleshoot any meta tag issues on your page. Also, the images on the page must be publicly accessible to the Facebook crawler. You can try specifying absolute url's like http://example.com/yourimage.jpg instead of just /yourimage.jpg.

Can I update these meta tags with client side code like Javascript or jQuery? No. Much like search engine crawlers, the Facebook scraper does not execute scripts so whatever meta tags are present when the page is downloaded are the meta tags that are used for image selection.

Adding these tags causes my page to no longer validate. How can I fix this?

You can add the necessary Facebook namespaces to your tag and your page should then pass validation:

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:og="http://ogp.me/ns#"
      xmlns:fb="https://www.facebook.com/2008/fbml">  
link|improve this answer
amazing stuff.. very interesting – abdul wahab kotwal Feb 20 at 9:50
Another place it looks: <link rel="apple-touch-icon" href="..."> (That's how it gets the SO image) – Yarin Mar 4 at 3:22
1  
@Yarin I'm not sure that is true. StackOverflow has the image_src property set, which is the one it is using. The file name for the apple-touch-icon is different and isn't being used. – OffBySome Mar 13 at 17:56
feedback

Put the following tag in the head:

<link rel="image_src" href="/path/to/your/image"/>

From http://www.facebook.com/share_partners.php

As far as what it chooses as the default in the absence of this tag, I'm not sure.

link|improve this answer
feedback

Old way, no longer works:

<link rel="image_src" href="http://yoururl/yourimage"/>

Reported new way, also does not work:

<meta property="og:image" content="http://yoururl/yourimage"/>

It randomly worked off and on during the first day I implimented it, hasn't worked at all since.

The Facebook linter page, a utility that inspects your page, reports that everything is correct and does display the thumbnail I selected... just that the share.php page itself doesn't seem to be functioning. Has to be a bug over at Facebook, one they aparently don't care to fix as every bug report regarding this issue I've seen in their system all say resolved or fixed.

link|improve this answer
feedback

When you share for Facebook, you have to add in your html into the head section next meta tags:

<meta property="og:title" content="title" />
<meta property="og:description" content="description" />
<meta property="og:image" content="thumbnail_image" />

And that's it!

Add the button as you should according to what FB tells you.

All the info you need is in www.facebook.com/share/

link|improve this answer
feedback

This is what worked for me: I placed the desired thumbnail image on the page right after the tag and making it too small to see..

<img src="imagename.jpg" width="1" height="1" />

I have not tested it with height 0 and width 0 but it probably will still work.. This does not guarantee the user will select this image..

ALSO it seems like Facebook caches the thumbnails on your page and doesnt always check it for new ones.. try adding this to another page on your site and you'll see that it works.

link|improve this answer
feedback

I do agree with answers by OffBySome and random. My conclusion : Image name should not contain any underscore for grabbing image as thumbnail. It should be one phrase like test.jpg.

link|improve this answer
feedback

protected by Community Aug 17 '11 at 0:14

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.