我为Microsoft Teams创建了一个应用程序,可以添加到团队中。该应用程序是使用Microsoft Bot框架创建的聊天机器人。我已经制作了另外两个功能类似的应用程序,可以很好地安装。
当我使用App Studio创建我的应用程序(并链接到现有的机器人)时,一切都很好,但当我试图将其添加到团队时,我得到了“出错”消息,并且没有请求发送到我的机器人。
有没有人遇到过类似的问题,或者有人知道如何调试这个问题?我的清单在下面。
下面是清单(ID替换)。
{
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.5/MicrosoftTeams.schema.json",
"manifestVersion": "1.5",
"version": "0.0.2",
"id": "my-id-is-here",
"packageName": "nl.getsofia.teams.acceptance",
"developer": {
"name": "Sofia Melius B.V.",
"websiteUrl": "https://www.getsofia.nl",
"privacyUrl": "https://www.getsofia.nl/",
"termsOfUseUrl": "https://www.getsofia.nl/"
},
"icons": {
"color": "color.png",
"outline": "outline.png"
},
"name": {
"short": "Sofia Acceptance 2",
"full": "Sofia Acceptance Nice"
},
"description": {
"short": "ACCEPTANCE bot",
"full": "ACCEPTANCE bot long description"
},
"accentColor": "#FFFFFF",
"bots": [
{
"botId": "my-bot-id-is-here",
"scopes": [
"personal",
"team"
],
"commandLists": [
{
"scopes": [
"personal"
],
"commands": [
{
"title": "Add user",
"description": "A manager can add a user"
},
{
"title": "Get overview",
"description": "Get an overview of registered hours"
},
{
"title": "Projects",
"description": "Manage all projects"
},
{
"title": "Register hours",
"description": "Register your hours"
},
{
"title": "Settings",
"description": "Set hour registration reminder times"
}
]
}
],
"supportsFiles": false,
"isNotificationOnly": false
}
],
"permissions": [
"identity",
"messageTeamMembers"
],
"validDomains": [
"*.sofiamelius.nl",
"*.getsofia.nl"
]
}
3条答案
按热度按时间eulz3vhy1#
如果在您尝试将bot部署到Teams(而不是尝试在Teams中与它对话)时发生这种情况,则“Sorry,something went wrong”消息通常是由于未设置Bot Service中的Teams通道而导致的。您必须同时设置清单 * 和 * 打开通道。
要打开通道,只需在Azure门户中导航到您的Bot服务,选择通道刀片,然后单击团队以保存和激活通道(我不记得了,但我认为您不必在这里配置任何设置)。
完成后,您应该能够使用任何可用的方法将bot发布到Teams。
a64a0gku2#
我在尝试使用“测试团队”团队进行测试时遇到了同样的问题,这显然是一个特殊的不可删除的团队,以某种方式存在于我们的团队中。
解决方案:创建一个新的团队并在那里使用您的机器人。
sqougxex3#
对于在将其应用程序包上传到团队时遇到问题的每个人的一般提示。Microsoft提供了一个工具来验证您创建的应用程序包
我个人发现这个工具对于创建一个有效的manifest.json文件非常有用。