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?
Asked
Active
Viewed 8.2k times
75

ilyo
- 35,851
- 46
- 106
- 159
-
http://enarion.net/programming/c-sharp/skype/html-call/ Check it out... Just a tip, not an answer – Andreas Nilsson Jul 22 '12 at 08:59
5 Answers
78
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.

Romain
- 6,322
- 3
- 35
- 40
-
1Just a side note: I'm not sure this happens everywhere, but the ?call seems to be the default behavior and thus can be omitted. – mavrosxristoforos Apr 23 '16 at 19:11
69
You can use skype:<username|phonenumber>[?[add|call|chat|sendfile|userinfo]]
or callto:<screenname|phonenumber>
, according to this wikipedia page:

Artefact2
- 7,516
- 3
- 30
- 38
-
@Andreas I guess that depends on the browser and platform used and whether the Skype app is installed? – Pekka Jul 22 '12 at 09:01
-
I guess, im interested in what is being shown if my mobile doesnt have skype installed :) Havent played with this. – Andreas Nilsson Jul 22 '12 at 09:07
-
Thank you! I've been searching "skype button to send add to contact request" – Þaw Feb 17 '17 at 10:02
8
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.

DaveAlger
- 2,376
- 25
- 24
6
<a href="skype:echo123?call">Call the Skype Echo / Sound Test Service</a>
According to Skype documentation

zooblin
- 2,172
- 2
- 27
- 33
2
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

Malik Zahid
- 593
- 5
- 13