Home > Enterprise >  Launch Teams Application from Browser
Launch Teams Application from Browser

Time:12-29

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:

Documentation

Example : https://teams.microsoft.com/l/chat/0/[email protected],[email protected]&topicName=Prep For Meeting Tomorrow&message=Hi folks, kicking off a chat about our meeting tomorrow

Above example solved my problem thanks!

  • Related