我正在尝试使用此处提供的步骤将网页添加到“团队”标签。 https://microsoft.github.io/BotFramework-WebChat/19.c.single-sign-on-for-teams-apps/
唯一的是,我不是在构建个人标签,而是在团队标签中
我已经尝试过此解决方案,但是在解析清单文件时遇到错误。 而且我不确定以下解决方案中的“ entityId”应该是什么
Unable to save tab of custom app in teams scope
{
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.5/MicrosoftTeams.schema.json",
"manifestVersion": "1.5",
"version": "1.0.0",
"id": "fd0e40dd-3c92-4db1-b777-ed37c1a912df",
"packageName": "https://www.google.com",
"developer": {
"name": "My Company",
"websiteUrl": "https://www.google.com",
"privacyUrl": "https://www.google.com/privacy.html",
"termsOfUseUrl": "https://www.google.com/termsofuse.html"
},
"icons": {
"color": "color.png",
"outline": "outline.png"
},
"name": {
"short": "Web chat sso",
"full": ""
},
"description": {
"short": "ompany landing page with ",
"full": "Web Chat and Single Sign-On"
},
"accentColor": "#FFFFFF",
"configurableTabs": [
{
"configurationUrl": "https://webchat-sample-sso.azurewebsites.net",
"canUpdateConfiguration": true,
"scopes": [
"team",
"groupchat"
]
}
],
"permissions": [
"identity",
"messageTeamMembers"
],
"validDomains": [
"webchat-sample-sso.azurewebsites.net",
"www.azurewebsites.net",
"google.com"
],
"staticTabs":[
{
"name": "Webchatsso",
"contentUrl":"https://webchat-sample-sso.azurewebsites.net",
"scopes":[
"team"]
}]
}
我希望该提示能够成功保存,以查看选项卡上的网页,任何团队成员都可以查看该网页,但这不会发生,因为禁用了“保存”按钮,与下面的屏幕快照相同。{{3} }