1

我正在尝试制作一个.html可以与 Microsoft Lync 一起使用的页面。但是,我似乎无法让它工作。

我将不胜感激详细的描述。

例子:

  • <a href="tel:123456789">Open a Lync Window the boss man.</a>
  • <a href="tel:txt:boss@boss.com">chat with the boss man.</a>
  • <a href="tel:call:boss@boss.com">call with the boss man.</a>
4

1 回答 1

2

确保在您的浏览器中启用了“Lync 点击通话”插件。启用附加组件后,以下内容将起作用:-

 - <a href="tel:123456789">Open a Lync Window the boss man.</a>
 - <a href="sip:boss@boss.com">IM Chat with boss man.</a>

请注意第二个示例中的“sip:”前缀。

于 2014-10-27T08:45:03.677 回答