Forum Discussion
Mansi_Barot
Oct 19, 2024Copper Contributor
Issue with Red Error Pop-up in Microsoft Teams Tab Application
Hello, I developed a Microsoft Teams tab application where I add a page in a static tab (using the contentURL). While the page loads successfully, a red error pop-up consistently appears after 30-45...
Nivedipa-MSFT
Microsoft
Oct 21, 2024Mansi_Barot - Thanks for reporting your issue. Could you please share your app manifest zip to check at our end?
- Mansi_BarotOct 21, 2024Copper Contributor
Nivedipa-MSFT, Sure. I've attached the app package (appPackage.local.zip) below.
- Nivedipa-MSFTOct 22, 2024
Microsoft
Mansi_Barot - We have tested this and able to repro your issue.
We have raised the bug for the same. We will let you know once we get any updates on it.
- Mansi_BarotOct 22, 2024Copper Contributor
Nivedipa-MSFT,
I've been encountering the AppInitTimeout error each time I see this error pop-up. Below are the console logs that may help identify the issue. Despite adding a local page from within the application, I still encounter the AppInitTimeout error.This is a simple tab application created using Visual Studio. I created a Razor page called test:
@page "/test" <h3>Hiiiiiiiiiiiiiiii</h3> @code { }
I then updated the manifest to point both the contentUrl and websiteUrl to the test page as follows:
"staticTabs": [ { "entityId": "index", "name": "Home", "contentUrl": "${{TAB_ENDPOINT}}/test", "websiteUrl": "${{TAB_ENDPOINT}}/test", "scopes": [ "personal", "groupChat", "team" ] } ],
However, I still keep getting the error pop-up.