I have encountered an issue while trying to create a deep link for my Microsoft Teams tab. My tab opens a web app built with Angular, which consists of a homepage and multiple internal pages. Specifically, I am having trouble creating a link that will open a particular route ('/article/1414') within the personal tab.
I have attempted to create the deep link using the following format:
The personal tab will open (home page). However, I have not been successful in getting the link to navigate to the specified route (/article/{articleId}).
When creating the link, I have set the following parameters:
https://teams.microsoft.com/l/entity/<appId>/<entityId>?webUrl=<entityWebUrl>&label=<entityLabel>
entityWebUrl: https://site.web.com/article/1414 label: Article entityId: I am using the personal tab entityId from the manifest. I am seeking advice on whether this is the correct way to create a deep link for my Teams tab. Any insights or suggestions would be greatly appreciated.
Thank you in advance.