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.

Possible Duplicate:
How does Facebook Sharer select Images?

According to Facebook's Open Graph protocol documentation, you may include multiple og:image meta properties to associate multiple images with your page:

og:image - An image URL which should represent your object within the graph. The image must be at least 50px by 50px and have a maximum aspect ratio of 3:1. We support PNG, JPEG and GIF formats. You may include multiple og:image tags to associate multiple images with your page.

However, when I load my page in the URL Linter, I get a warning:

Duplicate tags: You used "image" multiple times, but it should only appear once

So which is it?

Is there a better way to associate multiple thumbnail images with a page?

share|improve this question
It's just their Linter... as you said, multiple og:image works just fine. – kape123 Jun 7 '11 at 19:07

marked as duplicate by bkaid, Anna Lear, agf, Lorem Ipsum, YOU Oct 2 '11 at 8:04

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

You can add multiple og:image meta tags. facebook has left/right arrow controls that allow the user to choose between the images.

If URL Linter see's more than one og:image tag, it should show under the Debug as a Data Source with multiple values:

Extracted 3 values from : image location, image location, image location

share|improve this answer

As an alternative to the og:image meta tag, you can add your thumbnail images to the end of the DOM and set their visibility to hidden. The thumbnails will be recognized by Facebook even though they are not visible on the page itself. I usually do this as an added precaution just because I have experienced some flaky behavior with the meta tags in the past.

share|improve this answer
This sounds very promising. Will you please edit your answer to include an example? – Josh Glover Jun 8 '11 at 6:57
If you set an og:image tag, Facebook doesn't read other images at DOM. So you must consider one: to use opengraph and set images manually or facebook takes data from DOM automatically. – Murat Çorlu Nov 20 '12 at 8:59

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