Is there an href attribute for skype, like "mailto:" or "tel:"?

UrlSkypeUrl Scheme

Url Problem Overview


I am looking to make a skype link for a mobile site, is there a way use <a href=" to make it launch skype and add or call a user?

Url Solutions


Solution 1 - Url

If your mobile site is (generally) used by iOS devices, you can use :

<a href="skype:YourSkypeName?call">Call me on Skype</a>

Apple iOS devices automatically recognizes intents in link with Skype and FaceTime.

Solution 2 - Url

You can use skype:<username|phonenumber>[?[add|call|chat|sendfile|userinfo]] or callto:<screenname|phonenumber>, according to this wikipedia page:

http://en.wikipedia.org/wiki/URI_scheme#callto:

Solution 3 - Url

To turn your skype id into a link so people can add you to their contact list use the following:

<a href="skype:SKYPENAME?add">SKYPENAME</a>

Replacing SKYPENAME with your own of course.

Solution 4 - Url

<a href="skype:echo123?call">Call the Skype Echo / Sound Test Service</a>

According to Skype documentation

Solution 5 - Url

You can use <a href="skype:-skype-name-?chat">Start chat</a>

Allowed query parameters:

chat - start a chat

call - start a call

add - add person to the contacts

userinfo - view user's profile

voicemail - leave a voice message

sendfile - send a file

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionilyoView Question on Stackoverflow
Solution 1 - UrlRomainView Answer on Stackoverflow
Solution 2 - UrlArtefact2View Answer on Stackoverflow
Solution 3 - UrlDaveAlgerView Answer on Stackoverflow
Solution 4 - UrlzooblinView Answer on Stackoverflow
Solution 5 - UrlMalik ZahidView Answer on Stackoverflow