I am working on a Microsoft teams tab app. The app has 2 tabs. The app is installed in a team. For testing i have deployed it on Edge browser using the "Preview your Teams app" action in VS Code, using the Teams Toolkit extension.
What i am trying to achieve is that if i share a url of one of the tabs on a group chat of that team, then on clicking that url, that tab of the app opens.
The url that i have made is of this format - https://teams.microsoft.com/l/entity/${appId}/tabId
Here the appId
is
const appId = environment === "local" ? constants.TEAMS_APP_ID_LOCAL : constants.TEAMS_APP_ID_DEV;
So the final url us something like - https://teams.microsoft.com/l/entity/fe4a8eba-2a31-4737-8e33-e5fae6fee194/tabId
But when i click on the link i see this error error
So, by clicking above link i am not able to navigate to the app's tab.
Any idea what i may be doing wrong here? or how can u fix it so that on clicking the tab's link it redirects me to that tab of the app.