Hi All,
I have one tab application (say MyApp) in MS Teams which is built using React and other related technology. There is a scenario when mobile user would like to jump to MyApp with help of Deep Link from some other app like (Whatsapp / LinkedIn / Any app).
As per this link, below format can be used to create the DeepLink of MyApp:
https://teams.microsoft.com/l/entity/<appId>/<entityId>?webUrl=<entityWebUrl>&label=<entityLabel>&context=<context>
When user open this DeepLink in some external apps, it is opening browser first and then redirecting to MS Teams mobile app. I think this is happening because we are using https:// URL scheme. It is fine when user is using MS Teams on browser but on native MS Teams, it's not a good user experience.
Now question is that, can we replace msteams:// with https:// to open native MS Teams instead of browser. If we can use it, it will convert DeepLink in below format:
msteams://teams.microsoft.com/l/entity/<appId>/<entityId>?webUrl=<entityWebUrl>&label=<entityLabel>&context=<context>
It is not mentioned anywhere on the above link, so I am looking for an official answer here.