问题描述
我想创建HTML格式的应用程序链接到Skype配置文件。我发现您可以执行以下操作:
< a href =skype:profile_name>链接到我的简介< / A>
但是,这似乎触发了对该配置文件的Skype呼叫。我只想要选择浏览配置文件或将它们添加为联系人,我该如何做到这一点?
我想创建HTML格式的应用程序链接到Skype配置文件。我发现您可以执行以下操作:
< a href =skype:profile_name>链接到我的简介< / A>
但是,这似乎触发了对该配置文件的Skype呼叫。我只想要选择浏览配置文件或将它们添加为联系人,我该如何做到这一点?
似乎没有很好的文档记录,但有一些方法可以指定Skype配置文件链接的操作。这是语法
skype:profile_name?action
这种行为的例子有:
在这种情况下,查看配置文件的链接将如下所示:
< a href =skype:profile_name?userinfo>链接到我的个人资料< / a>
另见。
I'd like to create an application link in HTML to a Skype profile. I've found that you can do the following:
<a href="skype:profile_name">Link to my profile</a>
But this seems to trigger a Skype call to that profile. I'd just want the option to browse the profile or add them as a contact, how can I do this?
This doesn't seem to be very well documented, but there are ways to specify an action for a Skype profile link. This is the syntax
skype:profile_name?action
Examples of such actions are
In this case then, the link to view the profile would look like this
<a href="skype:profile_name?userinfo">Link to my profile</a>
See also the Skype URIs page on MSDN.
这篇关于创建应用程序链接到Skype配置文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!