Og: the image should be larger

I'm not sure why, but I keep getting this warning when using OG Debugger , and Facebook is not loading the correct error. This tells me that the image is not large enough, but the image is 404x404px, so I'm not sure what it expects, as it matches preferences 200x200.

The meta tag is fully specified here:

<meta property="og:image" content="http://beta.ccchapel.com/getattachment/1fc7e302-342f-4b1e-aae3-466905d3e084/" /> 

Any help from your suggestions would be appreciated.

+4
source share
3 answers

You can try the following option to get rid of it: -

  • make squares of images rounded to β€œhundreds,” for example. size 300x300px
  • host them on the same server (same domain name)
  • use jpg
  • avoid "weird" characters in the file name

Link Subject

+2
source

Have you tried to add meta-fields for "manually" indicating the height and width?

 <meta property="og:image:type" content="image/jpeg"> <meta property="og:image:width" content="404"> <meta property="og:image:height" content="404"> 
0
source

I had the same error. Here is what I did.

From the documentation for Facebook: http://developers.facebook.com/blog/post/612/

When changing Open Graph objects, you will need to tell Facebooks scraper to restore your page in order to get updated information.
There are several ways to modify your object.

  • Manually using the debugger at https://developers.facebook.com/tools/debug This will result in a fresh copy of the data in your pages if you are an administrator or developer of an object defined by the fb: app_id or fb: admins meta tag.

  • More automated using the POST parameter scrape = true. Make a POST call https://graph.facebook.com/?id= {id} & scrape = true, where {id} is the identifier of the object or the URL of the object. The answer is a JSON object with data cleared for the URL.

Also, when using https://developers.facebook.com/tools/debug, I continue to relax until it takes over suddenly. In addition, the use of the second option is more reliable, I think,

Link: https://developers.facebook.com/docs/opengraph/using-objects/

0
source

Source: https://habr.com/ru/post/1490545/


All Articles