Automatic Facebook posts lost images

0

Hello. I use the Twitter API to automatically post my site posts there, see: link Thevacanciesarecorrect,withthevacancytitle,descriptionandanimagewiththecompanylogonexttoit.

InTwittersettings,itisscheduledtosendthosesamepostsdirectlytoFacebook,whichhappenscorrectly.Butthepostssent,fromonehourtoanother(from02/13/2018),nolongerdisplaytheimagenexttothepost,see: link

Beforetheimagesappearednormally,andfromnowhereitstoppedappearing.TheMetataglookscorrectlysetuplikethis:

<metaproperty="og:image" content="https://www.carreirafashion.com.br/site/_imagens/redes_logo.png" />

What happened? If I copy the URL of a page and manually post it to Facebook ( link ), the appears. Only those posts sent directly by Twitter that are without images. Can anyone help me?

    
asked by anonymous 23.02.2018 / 14:30

1 answer

0

Your image comes from a https protocol. Add the goal below, I tested it for the same process you use and it worked:

Use og: image: secure_url when url comes from an https protocol.

<meta property="og:image:secure_url" content="https://www.carreirafashion.com.br/site/_imagens/redes_logo.png" /> 

The tips for using Open Graph on facebook:

Stay tuned for resolutions;

  

Use images with at least 1200 x 630 pixels for best display in   devices. At a minimum, you should use images that   600 x 315 pixels to display posts on the linked page   larger images. Maximum image size is 8 MB

Attentive to the minimum image size;

  

The minimum image size is 200 x 200 pixels. If you try to use   a smaller image than this, you will see an error in the Debugger.   sharing.

Attention to the use of the og: image: width and og: image: height

  

Using these markup will specify the dimensions of the image for the   tracker so that it can render it immediately without having to   download and process it asynchronously.

Use the <meta> tag with og: image: width , og: image: height , change og: image to og: image: url , if you are using https use og: image: secure_url ;

<meta property="fb:app_id" content="187756311833261" />
<meta property="og:type" content="article" />
<meta property="og:site_name" content="Carreira Fashion" />
<meta property="og:title" content="Comprador(a)" /> 
<meta  property="og:url" content="https://www.carreirafashion.com.br/vaga-de-moda/compradora/163591"/> 
<meta property="og:image:secure_url" content="https://www.carreirafashion.com.br/site/_imagens/redes_logo.png" /> 
<meta property="og:image:url" content="https://www.carreirafashion.com.br/site/_imagens/redes_logo.png"/> 
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="600" />
<meta property="og:image:height" content="315" />
<meta property="og:description" content="Empresa de confec&#xe7;&#xe3;o admite profissional para atuar com compras de tecidos e aviamentos.Necess&#xe1;rio experi&#xea;ncia na &#xe1;rea de compras para confec&#xe7;&#xe3;o.Local: Mogi das Cruzes / SP." />

You can test in the Debug of facebook, below:

Open Graph debugging tool.

link

Post Open Graph Reference

link

    
23.02.2018 / 14:57