Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/azure/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Azure Microrosft团队篡夺了清单版本_Azure_Visual Studio Code_Manifest_Microsoft Teams_Custom Application - Fatal编程技术网

Azure Microrosft团队篡夺了清单版本

Azure Microrosft团队篡夺了清单版本,azure,visual-studio-code,manifest,microsoft-teams,custom-application,Azure,Visual Studio Code,Manifest,Microsoft Teams,Custom Application,我正在开发一个定制的teams应用程序,直到几天前它还运行正常:wep应用程序在visual studio代码中使用chrome调试运行本地,服务应用程序在azure上分发 昨天我从app studio中错误地删除了本地应用程序(在visual studio代码中),然后我创建了一个新应用程序并将其设置为旧应用程序 团队可以识别该应用程序,当我从本地运行该应用程序时(通过chrome调试),它会在chrome上打开一个新窗口,我正确地看到了安装该应用程序的按钮: 单击“安装”时,我收到一个弹出错

我正在开发一个定制的teams应用程序,直到几天前它还运行正常:wep应用程序在visual studio代码中使用chrome调试运行本地,服务应用程序在azure上分发

昨天我从app studio中错误地删除了本地应用程序(在visual studio代码中),然后我创建了一个新应用程序并将其设置为旧应用程序

团队可以识别该应用程序,当我从本地运行该应用程序时(通过chrome调试),它会在chrome上打开一个新窗口,我正确地看到了安装该应用程序的按钮:

单击“安装”时,我收到一个弹出错误:我可以在本地visual studio调试控制台上看到此错误:

我的清单应用程序是标准清单,1.8版本:

"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.8/MicrosoftTeams.schema.json",
  "manifestVersion": "1.8",
  "version": "1.0.0",
  "id": "d8bf27a8-a5a3-4381-9dd8-696d473450a1",
  "packageName": "com.microsoft.teams.eclexia",
  "developer": {
    "name": "",
    "websiteUrl": "https://localhost:3000",
    "privacyUrl": "https://localhost:3000/privacy",
    "termsOfUseUrl": "https://localhost:3000/termsofuse"
  },
  "icons": {
    "color": "color.png",
    "outline": "outline.png"
  },
  "name": {
    "short": "",
    "full": ""
  },
  "description": {
    "short": "",
    "full": ""
  },
  "accentColor": "#FFFFFF",
  "staticTabs": [
    {
      "entityId": "index",
      "name": "Catalogo",
      "contentUrl": "https://localhost:3000/tab?tid={tid}&aaId={userObjectId}",
      "websiteUrl": "https://localhost:3000/tab",
      "scopes": [
        "personal"
      ]
    },
    {
      "entityId": "live",
      "name": "Live",
      "contentUrl": "https://localhost:3000/live?tid={tid}&aaId={userObjectId}",
      "websiteUrl": "https://localhost:3000/live",
      "scopes": [
        "personal"
      ]
    }
  ],
  "composeExtensions": [
    {
      "botId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
      "canUpdateConfiguration": true,
      "commands": [
        {
          "id": "searchQuery",
          "type": "query",
          "title": "Search",
          "description": "Test command to run query",
          "initialRun": false,
          "fetchTask": false,
          "context": [
            "compose",
            "commandBox"
          ],
          "parameters": [
            {
              "name": "searchQuery",
              "title": "Search Query",
              "description": "Your search query",
              "inputType": "text"
            }
          ]
        }
      ]
    }
  ],
  "permissions": [
    "identity",
    "messageTeamMembers"
  ],
  "validDomains": [
    "localhost"
  ]

如何解决此问题?

目前正在解决App Studio中的一个bug(请参阅我的问题:)。同时,您可以将其侧向加载到公司内部的应用程序商店,并从那里安装,特别是如果您有开发人员租户的话