我正在使用 Bot Framework 为 Microsoft 团队制作自定义机器人。我目前在本地托管机器人并通过 ngrok 进行隧道传输,并且我正在使用 /api/messages URL。我已经在机器人框架中注册了机器人,并将机器人句柄放在 BotId 中,将应用程序 ID 放在 MiscrosoftAppId 中,并将应用程序密码放在我的 Web.config 中的 MicrosoftAppPassword 中。Teams 频道已启用,并且在 Bot Framework 页面上具有“正在运行”状态。该机器人在模拟器上运行,并在 Bot Framework 页面上的测试连接上运行,但它不在 Microsoft Teams 中运行。
这是发送到我的机器人的内容:
"type": "message",
"id": "1497620296742",
"timestamp": "2017-06-16T13:38:19.303Z",
"localTimestamp": null,
"serviceUrl": "https://smba.trafficmanager.net/amer-client-ss.msg/",
"channelId": "msteams",
"from": {
"id": "29:1F9b3IgxC3x5ynp7nVxdSQ0bQ9MNyf7uKDZHrrCfRLyBbjOmdWSY4gyFLuR8cTRFmbXOeDN4f_uI65xSem6M5OA",
"name": "Ronnei, Evan T"
},
"conversation": {
"isGroup": true,
"id": "19:d02a9a4678924803964e6af1d9afc1ab@thread.skype;messageid=1497558943513",
"name": null
},
"recipient": null,
"textFormat": "plain",
"attachmentLayout": null,
"membersAdded": null,
"membersRemoved": null,
"topicName": null,
"historyDisclosed": null,
"locale": null,
"text": "Test Bot",
"summary": null,
"attachments": [
{
"contentType": "text/html",
"contentUrl": null,
"content": "<div><span itemscope=\"\" itemtype=\"http://schema.skype.com/Mention\" itemid=\"0\">Test Bot</span></div>",
"name": null,
"thumbnailUrl": null
}
],
"entities": [
{
"type": "clientInfo",
"locale": "en-US",
"country": "US",
"platform": "Windows"
}
],
"channelData": {
"teamsChannelId": "19:d02a9a4678924803964e6af1d9afc1ab@thread.skype",
"teamsTeamId": "19:e218343840af4d4397faf47bd3f4eada@thread.skype",
"channel": {
"id": "19:d02a9a4678924803964e6af1d9afc1ab@thread.skype"
},
"team": {
"id": "19:e218343840af4d4397faf47bd3f4eada@thread.skype"
},
"tenant": {
"id": "a9691d3f-49e3-46a8-8b23-ddad274d0523"
}
},
"action": null,
"replyToId": null,
"value": null,
"name": null,
"relatesTo": null
它给了我这个 401 Unauthorized 错误:
BotAuthenticator failed to authenticate incoming request!
当涉及到所有这些东西时,我是一个初学者。我遵循了 Bot Framework 文档上的可用教程,但它仍然不适用于 Teams。我有点卡在这一点上。如果我应该提供更多信息,请告诉我。
显然我没有足够的声誉来发布更多代码......所以这是我的 manifest.json:https ://pastebin.com/xK7y2VHX