【发布时间】:2020-09-30 11:11:38
【问题描述】:
https://github.com/OfficeDev/microsoft-teams-faqplusplus-app/wiki/Deployment-guide 这是我用来创建服务的资源。 我已经多次运行该过程以确保我没有错过任何东西 但现在我遇到了“出了问题”的墙。没有错误代码。 我不知道如何继续,因为“你不知道你不知道什么”
提前感谢您的任何指导,
杰米
这是我的代码:
{
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.5/MicrosoftTeams.schema.json",
"manifestVersion": "1.5",
"version": "1.0.0",
"id": "---------",
"packageName": "com.microsoft.teams.faqplus",
"developer": {
"name": "<<Jamie P>>",
"websiteUrl": "https://emergent360.com",
"privacyUrl": "https://emergent360.com/rosieprivacy",
"termsOfUseUrl": "https://emergent360.com/rosieterms"
},
"icons": {
"color": "color.png",
"outline": "outline.png"
},
"name": {
"short": "EmergentRosie"
},
"description": {
"short": "A friendly QnA bot that answers questions and connects you to experts.",
"full": "A friendly question and answer bot that answers commonly asked questions. If it can't answer, it will put you in touch with an expert as soon as they are available."
},
"accentColor": "#64A2CC",
"bots": [
{
"botId": "--------",
"scopes": [
"personal",
"team"
],
"commandLists": [
{
"scopes": [
"personal"
],
"commands": [
{
"title": "Take a tour",
"description": "Tour of key features"
},
{
"title": "Ask an expert",
"description": "Connect with an expert"
},
{
"title": "Share feedback",
"description": "Send feedback"
}
]
}
],
"supportsFiles": false,
"isNotificationOnly": false
}
],
"staticTabs": [
{
"entityId": "help",
"name": "Help",
"contentUrl": "https://emergentrosie.azurewebsites.net/help?theme={theme}",
"scopes": [
"personal"
]
}
],
"permissions": [
"identity",
"messageTeamMembers"
],
"validDomains": [
"emergentrosie.azurewebsites.net"
]
}
【问题讨论】:
-
我已经尝试安装你的清单,它对我来说加载得很好。您能否添加相关的ID并尝试安装它?请分享您看到的错误的屏幕截图。
标签: bots microsoft-teams qnamaker