从浏览器启动 Teams 应用程序

Launch Teams Application from Browser

我想像这样从浏览器弹出窗口打开 Teams 桌面应用程序。 Open Microsoft Teams Application Pop-up

有没有办法在我的 React.js/typescript 网络应用程序中做到这一点?

如果您创建 hyperlink with the correct structure,您的浏览器将显示相应的弹出窗口,Teams 将处理它:

https://teams.microsoft.com/l/entity/<appId>/<entityId>?webUrl=<entityWebUrl>&label=<entityLabel>&context=<context>

Documentation

示例:https://teams.microsoft.com/l/chat/0/0?users=joe@contoso.com,bob@contoso.com&topicName=Prep%20For%20Meeting%20Tomorrow&message=Hi%20folks%2C%20kicking%20off%20a%20chat%20about%20our%20meeting%20tomorrow

上面的例子解决了我的问题谢谢!