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?
|
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 keys one for the Facebook image are:
and it should be present inside the If these tags are not present, it will look for their older method of specifying an image: 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: 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 Also, the images on the page must be publicly accessible to the Facebook crawler. You should specify 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:
|
|||||||||||||
|
|
Put the following tag in the
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. |
|||
|
|
|
Old way, no longer works:
Reported new way, also does not work:
It randomly worked off and on during the first day I implemented 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 apparently don't care to fix as every bug report regarding this issue I've seen in their system all say resolved or fixed. |
||||
|
|
When you share for Facebook, you have to add in your html into the head section next meta tags:
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/ |
||||
|
|
|
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..
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. |
||||
|
|
|
For secure HTTPS
|
||||
|
|
|
From my experience, the http://www.facebook.com/sharer.php does not use meta tags. It uses the string you pass. See below. http://www.facebook.com/sharer.php?s=100&p[title]=THIS IS MY TITLE&p[summary]=THIS IS MY SUMMARY&p[url]=http://www.MYURL.com&&p[images][0]=http://www.MYURL.com/img/IMAGEADDRESS The meta tags work with Facebook's developer like/send buttons, as does the other Open Graph info. So if you use one of Facebook's actual elements like the comments and such, that will all tie into the Open Graph stuff. |
|||
|
|
|
I had this problem and fixed it with manuel-84's suggestion. Using a 400x400px image worked great, while my smaller image never showed up in the sharer. Note that Facebook recommends a minimum 200px square image as the og:image tag: https://developers.facebook.com/docs/opengraph/howtos/maximizing-distribution-media-content/#tags |
||||
|
|
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.
