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

夙愿已清 提交于 2019-12-02 17:48:40

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.

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:

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.

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

According to Skype documentation

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!