首页 > 解决方案 > 无法添加使用 AppStudio 构建的自定义团队选项卡

问题描述

我正在尝试使用此处提供的步骤将网页添加到团队选项卡。 https://microsoft.github.io/BotFramework-WebChat/19.c.single-sign-on-for-teams-apps/

唯一的问题是,我不是在构建个人标签,而是在构建团队标签

我已经尝试过这个解决方案,但是在解析清单文件时出现错误。而且我不确定以下解决方案中的“entityId”应该是什么

无法在团队范围内保存自定义应用程序选项卡

{
    "$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"]
      }]
}

我希望提示成功保存,以查看任何团队成员都可以查看的选项卡上的网页,但这不会发生,因为“保存”按钮被禁用,与下面的屏幕截图相同。在此处输入图像描述

标签: botframeworkmicrosoft-teams

解决方案


推荐阅读