将 Skype for business 应用程序与本机移动应用程序深度链接

Deep linking Skype for business app with react native mobile app

如果设备中已安装 Skype for business 应用程序,我如何将用户重定向到该应用程序?我需要注册我的应用程序才能实现吗?

import { Linking } from 'react-native';

Linking.openURL('sip:example@example.com').then();

它将打开与用户 example@example.com

的聊天 window

编辑: 要打开没有任何部分的应用程序,请像这样更改 uri:

Linking.openURL('ms-sfb://start').then().catch(err => { //app not installed });

Docs here