Microsoft Teams 清单是全屏不起作用



我正在使用yeomen生成器创建一个带有NodeJS和React的Microsoft Teams应用程序。https://learn.microsoft.com/en-us/microsoftteams/platform/tabs/quickstarts/create-personal-tab-node-yeoman

我实现了";isFullScreen";选项,但它就是不起作用。这里是我的模式:

{
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.7/MicrosoftTeams.schema.json",
"manifestVersion": "1.7",
"packageName": "TeamsApp",
"id": "8af948a0-0fc1-409c-942a-9376fc2d7f46",
"version": "1.0.2",
"isFullScreen": true,
"showLoadingIndicator": true,
"developer": {
"name": "xxx GmbH",
"websiteUrl": "https://www.xxx.de",
"privacyUrl": "https://www.xxx.de/Datenschutz",
"termsOfUseUrl": "https://www.xxx.de",
"mpnId": "1512061"
},
"name": {
"short": "Teams App",
"full": "Teams App Tool "
},
"description": {
"short": "xxx",
"full": "xxx"
},
"icons": {
"outline": "icon-outline.png",
"color": "icon-color.png"
},
"accentColor": "#004578",
"staticTabs": [
{
"contentUrl": "https://xxx.ngrok.io/overviewTab",
"entityId": "TeamsApp",
"name": "Overview",
"scopes": ["personal"]
}
],
"validDomains": [
"*.eu.ngrok.io"
]
}

我之前用SPfx开发了一个Microsoft Teams应用程序,在那里这个选项运行得很好。我还尝试使用App Studio应用程序;isFullScreen";选项被显示,但即使在那里它也不会做任何事情。

在3个月前的另一篇帖子中,他们刚刚说现在应该可以了。isFullScreen清单设置没有';不要做任何事

"isFullScreen";仅适用于LoB Store应用程序。

最新更新