Meta tags for URL with description and image (In Skype, Discord)

Oliver picture Oliver · Jan 19, 2019 · Viewed 8.4k times · Source


When somone send link in Skype or Discord, it can create image and description, like is shown on screenshots:
Skype (Img + Descr)
Discord (Img + Descr)

I think its because of <meta> tags in HTML <head>. But in HTML can be hunderts of <meta> tags.. I found this page on GitHub, Link: https://gist.github.com/lancejpollard/1978404 And that's so many tags. Is there someone who know only tags, which is making these images and descriptions on Skype and Discord?

I tried adding some meta tags, favicon, and title, but it not works, I don't know which <meta> tags I need.

Code i tried:

<title>Weird Website</title>
<meta name="description" content="Ehm.. weird website"/>
<meta name="url" content="http://www.weirdwebsite.idk/">
<link rel="icon" href="favicon.ico" type="image/x-icon" />

And it looks like this:

Skype (Title of page)
(Skype is taking <title> but where is an image?)
Discord (Only URL)
And.. discord shows only basic link. Who knows how to automatically add image and some text when is sent a link? (btw zzz.com isn't my website, only for example)
Thanks,
Oliver.

Answer

MaZoli picture MaZoli · Jan 19, 2019
<meta property="og:title" content="Site Title" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://my.site.com" />
<meta property="og:image" content="http://my.site.com/images/thumb.png" />
<meta property="og:description" content="Site description" />
<meta name="theme-color" content="#FF0000">

<!-- Include this to make the og:image larger -->
<meta name="twitter:card" content="summary_large_image">

And the image displayed as the link preview on Skype is the thumb image specified in og:image (that is not available anywhere else on the page).

Keep in mind that Skype may also cache information.