I want to open Teams Desktop Application from Browser Pop-up like this. Open Microsoft Teams Application Pop-up
Is there a way to do that in my React.js/typescript web application?
CodePudding user response:
If you create a hyperlink with the correct structure, then your browser will show the appropriate pop-up and Teams will handle it:
https://teams.microsoft.com/l/entity/<appId>/<entityId>?webUrl=<entityWebUrl>&label=<entityLabel>&context=<context>
CodePudding user response:
Above example solved my problem thanks!