如何打开android TeamViewer QuickSupport与Chrome浏览器的意图(深链接)或任何其他方式



我们正在尝试让TeamViewer QuickSupport应用程序在android设备上使用网页中的深层链接打开。参考android Chrome文档,我们尝试使用以下链接:

intent:#Intent;scheme=http;package=com.teamviewer.quicksupport.market;end

<a href="intent:#Intent;scheme=http;package=com.teamviewer.quicksupport.market;end"> Open support </a>

但是这会打开google Play商店并重定向到TeamViewer QuickSupport(不是坏事,但不是我们正在寻找的),即使安装了应用程序。我知道我可以用这个包名打开应用程序,因为我可以在我们的本地android应用程序中打开它。

有没有人知道如果TeamViewer支持这个或有任何其他方式打开一个应用程序在android上使用网页?这里不需要做什么特别的事情,只需要打开应用程序的主视图。

我测试了这个url,并在我的vue.js应用程序中工作。如果安装了它,它会直接打开应用程序。

<a href="intent:#Intent;action=com.teamviewer.launch.qs;category=android.intent.category.DEFAULT;end"> Open support </a>

最新更新