37

I tried to insert the following snippet in my script. By clicking the link it should do a call to a Skype account. I've been looking for hours now, but can't figure out why it doesn't work.

<pre><code>&lt;a href=&quot;callTo://USERNAME&quot;&gt;&lt;img src=&quot;http://goodies.skype.com/graphics/skypeme_btn_small_green.gif&quot; border=0&gt;&lt;/a&gt;</code></pre>

Is it accepted in any way or do I miss something here?

kenorb
  • 155,785
  • 88
  • 678
  • 743
Faili
  • 980
  • 5
  • 14
  • 27
  • Do you have skype installed?? http://www.ehow.com/how_2008799_use-skype-links.html – jimplode Oct 04 '10 at 13:32
  • Aye. Hm. That was the reason why I was asking. Ty – Faili Oct 04 '10 at 13:38
  • Possible duplicate of [Create application link to Skype profile](https://stackoverflow.com/questions/16177332/create-application-link-to-skype-profile) – kenorb Jun 07 '17 at 14:37

3 Answers3

68

Try "callto" (with no uppercase letters).

<a href="callto://+***********">Link will initiate Skype to call my number!</a>

<a href="skype:********?call">Link will initiate Skype
   to call my Skype username!</a>

source: http://geek.michaelgrace.org/2010/03/create-html-link-that-starts-a-skype-call/

Šime Vidas
  • 182,163
  • 62
  • 281
  • 385
  • Well, when clicking that link nothing happens. I tried to create a sample link which worked really fine. – Faili Oct 04 '10 at 13:43
  • Did you try both callto: with the number and skype: with the username? – Šime Vidas Oct 04 '10 at 13:51
  • Yes. I also tried the get-a-skype-button method. In every case the link wasn't linked. Even if I had not installed Skype there must've been a link... – Faili Oct 04 '10 at 13:55
  • Also, try in different browsers. I don't use skype so I cannot test this myself. In Firefox, go Tools > Options..., then in the Application tab, find "skype" or "callto" and check if those are associated with the Skype application. – Šime Vidas Oct 04 '10 at 14:00
  • Well, Skype isn't running in my browser. I wasn't able to find skype or callto in my application tab. But does it make any difference when the link is no link? Forgot to try the other browsers ic. I'll be right back. Tried it with three different browsers. Same result – Faili Oct 04 '10 at 14:20
  • When you say "the link is not a link" do you mean that when you add that code to your page, it doesn't actually display a clickable link? Or that it does create a clickable link, but clicking on it doesn't do what you expect it to? – EmmyS Oct 04 '10 at 21:31
  • i have tried this for the username, it does not work. it opens new page saying `The address wasn't understood` – shorif2000 Jun 08 '15 at 10:09
14

I have been fighting with the following link all day.

<a href="skype:USERNAME?chat">Start chat</a>

The problem that I had was with the USERNAME part

Finally, I just solved it.

My name on Skype web page was name but the real name was name lastname. The link in my web page did make Skype to load in my Android phone but, Skype failed to find the account to wich I wanted to call (name lastname).

I tryed, and failed:

<a href="skype:name lastname?call">...
<a href="skype:name+lastname?call">...
<a href="skype:name%20lastname?call">...
<a href="skype:name-lastname?call">...
<a href="skype:name_lastname?call">...
<a href="skype:phonenumber?call">...

Then, the solution:

<a href="skype:live:emailnamewithoutdomain?call">...

I just hope u find it usefull.

And, do not forget that u have a plenty of commands to add after the ? in the url (add,call,chat,and so on).

OfficeYA
  • 737
  • 8
  • 15
1

Just for another option from their official website: https://www.skype.com/en/developer/create-contactme-buttons

It's nice and easy to use, can be used both for chat or/and call.

enter image description here

Raymond
  • 1,309
  • 14
  • 10