Facebook demanding og.image width and height

DieselMinded

Well-known member
The provided 'og:image' properties are not yet available because new images are processed asynchronously. To ensure shares of new URLs include an image, specify the dimensions using 'og:image:width' and 'og:image:height' tags.

What can i add to my head to give this information
 
i have the same problem ...

The provided 'og:image' properties are not yet available because new images are processed asynchronously. To ensure shares of new URLs include an image, specify the dimensions using 'og:image:width' and 'og:image:height' tags
 
is this so correct ?

Code:
  <meta property="og:type" content="article" />
  <meta property="og:url" content="{xen:raw $url}" />
  <meta property="og:title" content="{xen:raw $title}" />
  <meta property="og:image:width" content="400" />
  <meta property="og:image:height" content="300" />
 
There are situations where we provide 2 og:image values (see the $avatar line), so I suspect you'd have to remove the avatar version. But that looks correct based on Facebook's message.
 
Top Bottom