Facebook Open Graph of the link of the post of my site does not appear description and thumbnail is small

Asked

Viewed 555 times

3

I’m working on the Open Graph of a Blogger platform. When I post something on Facebook, the presentation of the content of an article appears like this:

inserir a descrição da imagem aqui

When I paste the link of the blog post on Facebook does not look exactly as I would like, I want the image to be bigger, with title and description of the post, exactly like this:

inserir a descrição da imagem aqui

The tags are like this:

inserir a descrição da imagem aqui

I’ve used Open Graph Object Debugger.
Can someone help me, please?

  • You must use images that are at least 600 x 315 so that the image appears large as in the second example mentioned in your question. You can post here the post link you are trying to share to see what’s going on with the description?

  • Here the link http://www.futebolcomblush.com.br/2015/07/crise-no-cariri.html

  • See if it helps you: http://answall.com/a/67143/8493

2 answers

3


For images to appear large as in the second example mentioned in your question, use images that have at least 1200 x 630 pixels for better display on high resolution devices. The minimum size required for images to appear large in this way is 600 x 315 pixels. And the minimum size required for the og:image is of 200 x 200.

You can read more about the topic - og:image here at this link

However I noticed that the problem of the image appearing small was due to a lack of update, as after having inspected the link on Object Debugger i saw that the image appears large after updating the link with Object Debugger.

On the description does not appear, try changing the og:description as follows.
Exchange the current code:

<b:if cond='data:blog.metaDescription != ""'>
<meta expr:content='data:blog.metaDescription' name='og:description'/>
</b:if>

To the next:

<b:if cond='data:blog.metaDescription'>
    <meta expr:content='data:blog.metaDescription' property='og:description'/>
<b:else/>
    <meta expr:content='&quot;Ler artigo sobre &quot; + data:blog.pageName + &quot; em &quot; + data:blog.title + &quot;&quot;' property='og:description'/>
</b:if>

Basically what this is going to do is take the meta description if it exists and display it as og:description, but if there is no meta description available, then the text Ler artigo sobre ... will be implemented as og:description instead.

Meta description in Blogger

To activate the meta description you have to go up:

Definições > Preferência de pesquisa > Meta tags > Descrição Click edit.
And the following shall appear:

inserir a descrição da imagem aqui

Add Meta description to individual publications

Simply edit your post or page and look for the option Description of the Research, and this is where we will add the description of each page that will now also be displayed as og:description to Facebook.

inserir a descrição da imagem aqui

  • Hi Chun, hi Chun! I did what you suggested, now the description appears and the big image, just need to be the description of the post, look how it looked: http://oi59.tinypic.com/a2rsyq.jpg Could you help me?

  • Hi @Diegogomes , sorry missed mentioning the part of - "activate the meta description tags". I’ve updated my answer. It should now work perfectly =)

  • 1

    It worked perfectly! Thank you very much :) I thought I had already marked the correct answer here, sorry

2

You’re not writing facebook meta tags, are you? And for the image to appear larger it should be 600x315 or 1200x630.

<meta property="og:title" content="Lorem ipsum" />
<meta property="og:description" content="Lorem ipsum..." />
<meta property="og:image" content="URL_DA_IMAGEM" />

Documentation link: https://developers.facebook.com/docs/sharing/best-practices#images

  • 1

    Hi, this description I should enter is the site, or the post? This is one of the doubts I have, because if I choose a pattern, they will all be the same?

  • @Diegogomes the description is of the posts, will be what will appear in the facebook dialog. The same for title and image

  • That’s what @Kaduamaral said. But type in the index of your site you leave the title, description and image of the same site. And inside the news you leave with the news data, etc.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.