Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make Skype-friendly links (preview image tags)

Tags:

Sharing certain links on Skype triggers the program to show preview with image from the page. On a website I work on - there are big images on certain pages but Skype picks up the logo of the website instead. I was unable to find what meta tags would make Skype pick up the intended image and preview it.

I have a <link rel="image_src" href="http://www.example.com/path/to/img.png" /> that works for Facebook-sharing preview (img.png is used instead of the logo of the website) but doesn't work for Skype.

So how would you hint Skype which image should be used for preview?

like image 687
ddinchev Avatar asked Feb 23 '16 21:02

ddinchev


People also ask

What is a link preview image?

A link preview is what posts show about one or more embedded links, e.g. a headline, image, summary from the link destination. Link previews are similar to reply contexts, and share many of the same techniques and tools.


2 Answers

I will need to find some source to support this, but I think that if you have defined some open graph meta data, it will pick the image specified in there. For example, I have these in one of my sites:

<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" /> 

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).

like image 146
Alvaro Montoro Avatar answered Sep 22 '22 06:09

Alvaro Montoro


We are in 2021 and this Skype issue continues! :/

I communicated through Microsoft forum and several users have the same problem.

My open graph metadata is well defined, in fact the link previews fine on Facebook and Twitter, but not on Skype.

I already reported the bug to Skype, hopefully they will answer something ...

like image 35
Juan Avatar answered Sep 22 '22 06:09

Juan