NextJS - ReactJS - Мой открытый график не трансформирует мои метатеги - PullRequest
0 голосов
/ 11 октября 2018

Я делаю тест с метатегами Open Graph.Я установил свою голову с помощью next/head. Кажется, что head хорошо читается, поскольку заголовок страницы соответствует значению, введенному в коде.Хорошо, теперь, когда я запускаю ссылку на Facebook, я попадаю на страницу с одним значением в URL-адресе моего сайта.

При нажатии на источник просмотра теги не отображаются.

Я проверил, чтобы установить заголовок, но он не отображается на графике.

Вот изображение ситуации:

enter image description here

Титул также отсутствует.Я пробовал с другими метатегами, но тоже не работает.

Вот мой фрагмент file.js:

 <Head>

     <title> Test 02 </title>
     <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"/>
    <meta property="og:title" content="An awesome endless memories's title" />
    {/* <meta property="og:type" content="video.movie" />
    <meta property="og:url" content="http://www.imdb.com/title/tt0117500/" /> */}
    {/* <meta property="og:image" content="http://ia.media-imdb.com/images/rock.jpg" /> */}
    {/* <meta property="og:description" 
      content="Sean Connery found fame and fortune as the
           suave, sophisticated British agent, James Bond." />
<meta property="og:site_name" content="IMDb" />
     <meta property="og:locale" content="en_US" />

    <meta property="og:locale:alternate" content="en_GB" />
    <meta property="og:locale:alternate" content="fr_FR" /> */}
    {/* <meta property="og:image" content="http://example.com/ogp.jpg" />
    <meta property="og:image:secure_url" content="https://secure.example.com/ogp.jpg" />
    <meta property="og:image:type" content="image/jpeg" />
    <meta property="og:image:width" content="400" />
    <meta property="og:image:height" content="300" />
    <meta property="og:image:alt" content="A shiny red apple with a bite taken out" />  */}
    {/* <meta property="og:site_name" content="Convert: Social Media Consulting and Content Marketing Consulting" /> */}
{/* <meta property="og:image:width" content="1600" />
<meta property="og:image:height" content="800" /> */}

{/* <meta property="article:section" content="Word of Mouth" /> */}

Как работают мои метатеги?Любой намек был бы отличным, спасибо

Как

...