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!">
Related: http://answall.com/a/162276/3635
– Guilherme Nascimento