Hello,
I am trying to embed OpenGraph tags in my website, so that when I post a link to my website on this forum, it would look nice and informative. I've taken a look at https://ogp.me/ and added the following lines to my index.html file, <head>
section (changed real domain name to example.com here):
<meta property="og:title" content="My Title" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.example.com/" />
<meta property="og:image" content="https://www.example.com/icon256x256.png" />
<meta property="og:image:width" content="48" />
<meta property="og:image:height" content="48" />
<meta property="og:description" content="My description" />
However when I post a link to my website on this forum, I see just the URL and the error message
Sorry, we were unable to generate a preview for this web page, because the following oEmbed / OpenGraph tags could not be found: description, image
Am I missing something?