Forum Discussion
Ben_64
May 14, 2021Copper Contributor
Teams channel Link in a custom Teams App
Hello community. I am currently working on a custom Teams App with App Studio. This App has tabs. One tab should lead to another teams channel. I know how to get the link to the channel. But when I...
Mamatha-MSFT
May 18, 2021Former Employee
Hi Ben_64 , It's not possible to display channel chat as a tab. But you can redirect to channel chat when you open a tab using channel link. Create a custom tab and use below code in tab file to redirect to channel to when you open a tab.
@page "/deeplink"
@{Layout = "~/Pages/Shared/_Layout.cshtml";}
<script>
microsoftTeams.initialize();
microsoftTeams.executeDeepLink("Channel link");
</script>