首页 > 解决方案 > Eyebeam 软电话无法使用从 html 页面提供的正确号码拨打电话,然后在 href 标记中添加 sip 值

问题描述

我已经安装并配置了 EyeBeam 软电话,并在 html 页面中创建了一个链接,以便仅在 Windows 平台上从 eyeBeam 软电话拨打电话,以下是 html:

<a href="sip:xxxxxx">xxxxxx</a>

我还在 Windows 协议注册表中为 sip 配置了设置,如下所示:

"C:\Program Files (x86)\CounterPath\eyeBeam 1.5\eyeBeam.exe" -dial="%1"

问题是当我点击链接时,它会将所有字符串带到 eyeBeam 后跟“sip”字样,我只想拨打号码。

我对此进行了很多搜索,可能有很多参数可以删除 sip 字,但没有得到任何永久解决方案。

请帮忙。

标签: htmlregistryprotocolshrefsip

解决方案


在我使用 Eyebeam 软电话的情况下,我修改了我的链接:

<a href="sip:xxxxxx@xxxxxx">xxxxxx</a>

这对我有用,注册表命令与我的问题中提到的 sip 协议相同。

以下是我提到的一些链接:

https://medium.com/@m.bhavsar6/custom-browser-protocol-for-windows-application-openrdp-708cd48aa387

https://docs.microsoft.com/en-us/troubleshoot/windows-client/application-management/change-registry-values-permissions


推荐阅读