Problems with displaying my site on facebook

1

Good evening I have tags on my site for sharing on facebook

<meta name='og:title' content='Desapego Games - Troca, Compra e Venda de Games'/>
<meta name='og:url' content='http://desapegogames.com.br/' />
<meta name="description" content='A sua comunidade focada em compra,venda e troca de games e artigos Geek. E o melhor de tudo é grátis!' />
<meta property="og:image" content="http://desapegogames.com.br/images/logoface.jpg" />      
<meta property='og:description' content='A sua comunidade focada em compra,venda e troca de games e artigos Geek. E o melhor de tudo é grátis!' />  

So that facebook nbao includes this image of the og: image tag it includes any other image from the page

In the face debugger even updating the cache it returns that I do not have the tag on my page.

Can anyone help me fix this? I already tried everything I copied the code of sites that work and does not solve.

    
asked by anonymous 14.01.2017 / 00:27

1 answer

2

This error message probably occurs when you confuse the property attribute with name :

  

The "og: ****" property should be explicitly provided, even if value can be inferred from other tags.

Some you've used name others used property , the use of opengraph is property="" for all og: tags, as per link

Another detail is what you used like this:

<meta name='fb:app_id' content="324349677944444"/>

But the correct one is:

<meta property='fb:app_id' content="324349677944444"/>

According to: link

It should look like this:

<meta property="fb:app_id" content="324349677944444" />
<meta property="og:title" content="Desapego Games - Troca, Compra e Venda de Games"/>
<meta property="og:url" content="http://desapegogames.com.br/" />
<meta property="og:description" content="A sua comunidade focada em compra,venda e troca de games e artigos Geek. E o melhor de tudo é grátis!" />
<meta property="og:image" content="http://desapegogames.com.br/images/logoface.jpg" />
<meta property="description" content="A sua comunidade focada em compra,venda e troca de games e artigos Geek. E o melhor de tudo é grátis!" />

An additional detail, which does not influence anything, just to emphasize, if it is HTML5 /> is optional and also if possible do not mix the og tags with the normal ones, you can think of change to only:

<!-- og -->
<meta property="fb:app_id" content="324349677944444">
<meta property="og:title" content="Desapego Games - Troca, Compra e Venda de Games"/>
<meta property="og:url" content="http://desapegogames.com.br/">
<meta property="og:image" content="http://desapegogames.com.br/images/logoface.jpg">
<meta property="og:description" content="A sua comunidade focada em compra,venda e troca de games e artigos Geek. E o melhor de tudo é grátis!">

<!-- meta -->
<meta name="description" content="A sua comunidade focada em compra,venda e troca de games e artigos Geek. E o melhor de tudo é grátis!">
    
14.01.2017 / 00:40