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.

I had read that images associated with a given URL in the Facebook open graph had to be greater than 50 x 50

However, when we ran the Facebook Object debugger - we got the following warning:

"Tiny og:image: All the images referenced by og:image must be at least 200px in both dimensions. Please check all the images with tag og:image in the given url and ensure that it meets the minimum specification."

Our URL is http://www.famousbirthdays.com/people/charlie-chaplin.html and the image does show up under Object Properties

Do we need to convert our images to be greater then 200 x 200? Or can we leave it as is? It is currently a 65 x 75 image.

thanks for your help!

share|improve this question
3  
Please pick the best answer. – Mike Oct 18 '12 at 21:29
There also appears to be maximum image dimensions, at least for visitors using IE9. If I make my images larger that 255x255 pixels, they do not reliably show up when shared via Facebook. – sbleon Dec 20 '12 at 19:45

7 Answers

I'm looking into this stuff now, and its exceedingly confusing.

From https://developers.facebook.com/docs/share/:

The og:image is the URL to the image that appears in the Feed story. The thumbnail's width AND height must be at least 50 pixels, and cannot exceed 130x110 pixels. The ratio of both height divided by width and width divided by height (w/h, h/w) cannot exceed 3.0. For example, an image of 126x39 pixels will not be displayed, as the ratio of width divided by height is greater than 3.0 (126/39 = 3.23). Images will be resized proportionally.

This doesn't make sense, as they seem to specify the minimum pixel size of either dimension at 50, and the max at 130x110, but then goes on to say that the ration of width/height (or vice versa) cannot exceed 3.0. This seems strange b/c you cannot exceed that dimension within the min/max limits (130/50 & 110/50 are both < 3)

From the object debugger:

All the images referenced by og:image must be at least 200px in both dimensions.

At this point, I screamed. ;-)

WTF facebook?

share|improve this answer

It is pretty clear. They cannot be more than 130x110px and must be at least 200px per side. That is entirely possible if you store your image on a TARDIS.

Seriously, I just ran into this myself, which quite confused me since the pages passed muster just fine not long ago. I expect this is a change designed for the Timeline layout that just hasn't been updated in the documentation. What I can't find is if og:images must now be "at least" 200px per side what is the maximum and what is the current recommended size. WTF indeed.

Scott

share|improve this answer
1  
upvoted just for the giggle. – Stephen Nov 8 '12 at 16:48
YES, must be at least 200px and recommended is 1500px (!!) See my answer for reference. – Luciano Carvalho May 10 at 5:31

Looks to be a bug in the specification. A work-around solution is to make your images 200px but clip what you do not want to see, or shrink them if you have large enough originals. For example, if your image is 25x25 pixels you can add 175px to both dimensions and then nest that image inside of a div that has an overflow:hidden css property and width/height of 25x25. Not the cleanest, but it would work.

I've opened a bug ticket with Facebook to address the question of poor documentation and uncover if this is an actual spec or bug. http://developers.facebook.com/bugs/210269722417284

share|improve this answer

Looks like they updated their docs:

The picture must be at least 50px by 50px (though minimum 200px by 200px is preferred) and have a maximum aspect ratio of 3:1

developers.facebook.com/docs/reference/dialogs/feed

share|improve this answer

Today I had a much clearer answer to this question (from the Open Graph debugger tool):

Small og:image: All the images referenced by og:image should be at least 200px in both dimensions, with 1500x1500 preferred. (Maximum image size is 5MB.) Please check all the images with tag og:image in the given url and ensure that it meets the recommended specification.

og:image should be larger: Provided og:image is not big enough. Please use an image that's at least 200x200 and preferably 1500x1500. (Maximum image size is 5MB.) Image ... will be used instead.

So, YES, you have to convert your open graph images to at least 200x200 pixels, and it seems that the larger, the better.

If your image is smaller than 200x200, Facebook will try to use a larger image (if) available on the page.

share|improve this answer

I ran into the same problem. I did not perform exhaustive testing, so I can't say exactly what the requirements are to get the images to show up. I can say that I switched my images to being >200x>200 (specifically 350x350) and they showed up after that.

share|improve this answer
The correct geometry string for ImageMagick would be '200x200^'. Use ^ to set a minimum image size limit – wprater Oct 14 '12 at 22:49
Oh, I wasn't trying to use an ImageMagick string, just saying "greater than 200 by greater than 200" for the dimensions that worked. – sdouglass Oct 15 '12 at 22:54
Regardless, It did encourage me to create a pull request for carrierwave for anyone that uses ruby and carrierwave and needs to utilize the string I provided above! github.com/jnicklas/carrierwave/commit/… – wprater Oct 16 '12 at 22:10

I had same issue.. did my head in. Im using wordpress for site so I had to drop the www. Check in your wordpress admin > settings >general for your site address / wordpress address etc.. However overcomes other URL errors.
As for the image issue.. All I can say is this worked for me in my header file. I added this below.

<html prefix="og: http://ogp.me/ns#">
<head>
<meta property="og:image" content="http://yourwebsite.com/images/yourimage.jpg"/>
<meta property="og:image:width" content="500" />
<meta property="og:image:height" content="500" />
<meta property="og:title" content="your website page title"/>
<meta property="og:url" content="http://yourwebsite.com"/>
<meta property="og:site_name" content="site name and content etc"/>
<meta property="og:description"content="description of site" />
<meta property="og:type" content="Website"/>

IN wordpress I did leave the <title><?php wp_title( '|', true, 'right' ); ?></title> in there. Also as suggested in other posts in my instance this code: <link rel="image_src" href="http://URL-TO-YOUR-IMAGE" / >

Made it NOT WORK. When I removed it.. it was instantly fixed. I used a 500 x 500 image. Good Luck.. hopefully I save someone else pain.

share|improve this answer

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.