如何使用 HTML 进行 Skype 通话?

发布于 2024-09-25 16:23:16 字数 336 浏览 2 评论 0原文

我尝试在我的脚本中插入以下代码片段。通过单击该链接,它应该会呼叫 Skype 帐户。我已经找了好几个小时了,但不明白为什么它不起作用。

它是否以任何方式被接受或者我在这里错过了什么?

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><a href="callTo://USERNAME"><img src="http://goodies.skype.com/graphics/skypeme_btn_small_green.gif" border=0></a></code></pre>

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

虚拟世界 2024-10-02 16:23:16

尝试“callto”(不带大写字母)。

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

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

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/

甜心小果奶 2024-10-02 16:23:16

我一整天都在与以下链接作斗争。

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

我遇到的问题是 USERNAME 部分

最后,我刚刚解决了它。

我在 Skype 网页上的名字是姓名,但真实姓名是姓氏。我的网页中的链接确实使 Skype 加载到我的 Android 手机中,但是 Skype 无法找到我想要呼叫的帐户(姓氏)。

我尝试过,但失败了:

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

然后,解决方案:

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

我只是希望你发现它有用。

并且,不要忘记,您可以在 url 中的 ? 之后添加大量命令(添加、通话、聊天等)。

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

高冷爸爸 2024-10-02 16:23:16

只是为了他们官方网站上的另一个选择:
https://www.skype.com/en/developer/create-contactme-按钮

它很好用,很容易使用,可以用于聊天或/和通话。

输入图片此处描述

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文