Problems with displaying my site on facebook

Asked

Viewed 517 times

1

Good evening I have the tags on my website 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!' />  

only that facebook nbao includes this image og:image tag it includes any other page image

in the face debugger even updating the cache it returns that I don’t have the tag on my page.

inserir a descrição da imagem aqui

Could someone help me fix this ? I’ve tried everything I copied the code of websites that work and does not solve.

1 answer

2


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

The "og:****" Property should be explicitly provided, Even if a value can be inferred from other tags.

Some you used name others used property, the use of opengraph is property="" for all tags og:, as per the http://ogp.me

Another detail is that you used it like this:

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

But the right thing is:

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

In accordance with: https://developers.facebook.com/docs/sharing/opengraph/using-objects

Should stay 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 nothing, just to point out, if it is HTML5 the /> it is optional and also if possible not to mix the og tag with the normal ones, you can think about changing to just:

<!-- 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!">

Browser other questions tagged

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