如何创建将在 iPhone 上的 VoIP 应用程序上拨打 SIP 地址的链接

发布于 2024-10-21 21:15:05 字数 457 浏览 1 评论 0原文

我想正确标记我网站上的所有电话号码,以便它们可点击。 该解决方案已在SO上提供:一般情况下和专门针对 iPhone。 然而,当针对 iPhone 时,这会唤起普通的电话应用程序。

如果安装了的话,是否有可能有一个调用 SIP VoIP 应用程序的链接(我猜在 PC 上,电话链接总是调用 VoIP 应用程序,因为它们根本没有内置普通电话...)

I want to properly markup all the phone numbers on my website so that they are clickable.
The solution has been offered on SO: in general and specifically for an iPhone.
However when targeting the iPhone this evokes the normal phone application.

Is it possible to have a link that invokes the SIP VoIP application if one is installed( I guess on pc's a tel link always invokes a VoIP application, because they simply don't have regular phones built in...)

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

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

发布评论

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

评论(1

抚你发端 2024-10-28 21:15:05

这是可能的,但有一些限制。

任何应用程序都可以注册 自定义 URL 方案。但此 URL 方案“必须”是唯一的。例如 my-cool-sip-app:...,另一个应用程序可以有像 super-duper-sip-app: 等方案。您可以检查是否安装了具有所选 URL 方案的应用程序 (UIApplication, canOpenURL: )。

或者,多个应用程序可以具有相同的自定义 URL 方案,例如在您的情况下为 sip:...。但是,如果您安装了 2 个或更多具有相同方案的应用程序,您就无法确定哪一个应该处理 sip:... URL。苹果的文档:

如果您的 URL 类型包含方案
与定义的相同
Apple,Apple 提供的应用程序
启动而不是你的
应用。如果有多个第三方
应用程序注册来处理
相同的 URL 方案,但未定义
选择哪个应用程序
处理该类型的 URL。

有效的 SIP URL 为:

因此,如果您安装了 SIP 应用程序,您应该尝试上述 SIP URL 之一。任何 SIP 应用程序都应该支持它。

这是一个 Acrobits Softphone 应用程序,您可以在其中可以看到(在描述中)它支持软件电话:号码 URL 方案。如果您只想使用这个应用程序,这很好,但对最终用户来说却很糟糕,因为其他开发人员不愿意通过 AppStore 并添加对除 sip 之外的所有自定义 URL 方案的支持:...

我的答案是 - 尝试 sip :...如果您有良好的 SIP 应用程序,它应该可以完美地处理这些链接。

It's possible, but with some limitations.

Any application can register custom URL scheme. But this URL scheme "must" be unique. For example my-cool-sip-app:..., another application can have scheme like super-duper-sip-app:, etc. You can check if an application with selected URL scheme is installed or not (UIApplication, canOpenURL:).

Or, several applications can have same custom URL scheme, in your case sip:... for example. But if you have 2 or more applications with the same scheme installed, you can't say which one should handle sip:... URL. Apple's documentation:

If your URL type includes a scheme
that is identical to one defined by
Apple, the Apple-provided application
is launched instead of your
application. If multiple third-party
applications register to handle the
same URL scheme, it is undefined as to
which of the applications is picked to
handle URLs of that type.

Valid SIP URLs are:

So, if you have a SIP application installed, you should try one of the mentioned SIP URLs. Any SIP application should support it.

Here's an Acrobits Softphone application where you can read (in description) that it supports asoftphone:number URL scheme. It's good if you want to use just this application, but it's bad for the end user, because other developers are not willing to go through AppStore and add support for all custom URL schemes other than sip:...

My answer is - try sip:... and if you have good SIP application, it should handle these links flawlessly.

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