I followed this document Add tabs to Microsoft Teams apps to add a static tab in personal scope for my Ms teams app which is nothing but a chatbot built based on botbuilder nodejs sdk. Here is how entry from manifest.json file looks
"staticTabs": [
{
"entityId": "spotify_g",
"name": "Show Spotify home page",
"contentUrl": "https://www.spotify.com/us/",
"websiteUrl": "https://www.spotify.com/us/",
"scopes": [
"personal"
]
}
]
I am just trying show spotify home page for fun to try out this functionality so later I can embed my website's home page. But, for some reason I don't see anything when Tab is clicked on the installed Bot. Looks like its not rendering in an . Any thoughts ?
Screen Shot can be found herew where is shows nothing is rendering on the tab.