Cree las etiquetas <meta> requeridas para compartir en las redes sociales de la siguiente forma :
Código HTML:
Ver original
<meta name="title" content="¡Quienes Somos? Acerca de nosotros" /> <meta name="description" content="..." /> <meta name="author" content="---" /> <meta name="image" content="-----" /> <meta itemprop="description" content="---------" /> <meta itemprop="author" content="..." /> <meta itemprop="image" content="..." /> <!---Tags Meta-----!> <meta property="og:title" content="¡Quienes Somos? Acerca de nosotros" /> <meta property="og:type" content="website" /> <meta property="og:url" content="mi_url" /> <meta property="og:image" content="..." /> <meta property="og:description" content="..." /> <meta property="og:site_name" content="..." />
Las cree conforme los ejemplos de la pagina oficial de openGraph, sin embargo al analizar las páginas con el Debugger de facebook me dice el siguiente error :
Cita:
Me dice que las arma en base a las etiquetas <meta name=""...> y no ve las etiquetas og. alquien tiene idea de porque sucede eso ? Warnings That Should Be Fixed
Inferred Property The 'og:url' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property The 'og:title' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property The 'og:description' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property The 'og:image' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property The 'og:url' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property The 'og:title' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property The 'og:description' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property The 'og:image' property should be explicitly provided, even if a value can be inferred from other tags.
Muchas gracias de antemano.