Open Graph and Meta tags

0

For some reason, the facebook debugger does not recognize the meta tags of my site, he says, that there are metatags in <body> and I set them soon after <title> in <head> (I call them with an include in PHP). The code looks like this:

<!doctype html>
<html lang="br">
<head>
<meta charset="utf-8">
<title>Rainbow 6: Club - By Players. For Players.</title>
AQUI ESTÁ A META TAG
<?php include("meta.php"); ?>

<noscript><?php echo $noscript; ?></noscript>
<link rel="icon" href="favicon.ico"/>
<link rel="stylesheet" href="css/home.css"/>
...outras tags
In the meta.php file it looks like this:

<meta name="description" content="descrição" />
<meta name="keywords" content="keys" />
<meta name="Copyright" content="...." />
<meta name="Title" content="...." />
<meta name="autor" content="...." />
<meta name="company" content="..." />
<meta name="Distribution" content="Global" />
<meta name="Language" content="Portuguese" />
 <!-- Facebook -->
<meta property="og:title" content="titulo">
<meta property="og:site_name" content="titulo">
<meta property="og:url" content="url do site">
<meta property="og:image" content="url de uma img com 1200x630">
<meta property="og:description" content="descrição">
<meta property="og:type" content="website">

I do not understand the reason for the error. Has anyone gone through this can you help me?

    
asked by anonymous 06.08.2018 / 03:45

0 answers