我目前正在为 Microsoft-Teams 开发自定义机器人;遵循 Ms doc ( https://msdn.microsoft.com/en-us/microsoft-teams/custombot ) 中描述的步骤,但尚未设法正确发送任何请求的回复。
这是我的 webhook 处理程序在我使用 @AgentSmith 在 Ms-teams 的频道上发送数据时收到的内容(AgentSmith 是我的机器人的名称):
{
"type": "message",
"id": "1503406241867",
"timestamp": "2017-08-22T12:50:41.978Z",
"localTimestamp": "2017-08-22T14:50:41.978+02:00",
"serviceUrl": "https://smba.trafficmanager.net/emea-client-ss.msg/",
"channelId": "msteams",
"from": {
"id": "29:1nxaNQeM7AaQumVmUmPaS4K0gMHZD-FtA_gnJ9xFqZXG5nlpRnsIv-uWeAWQeuKKEQXEEXbwhK4LG1oqvqinGJg",
"name": "John Doe"
},
"conversation": {
"isGroup": true,
"id": "19:a438309226204de48783042c5bfd3bd9@thread.skype;messageid=1503406241867",
"name": null
},
"recipient": null,
"textFormat": "plain",
"attachmentLayout": null,
"membersAdded": [],
"membersRemoved": [],
"topicName": null,
"historyDisclosed": null,
"locale": null,
"text": "<at>AgentSmith</at> test",
"speak": null,
"inputHint": null,
"summary": null,
"suggestedActions": null,
"attachments": [
{
"contentType": "text/html",
"contentUrl": null,
"content": "<div><span itemscope=\"\" itemtype=\"http://schema.skype.com/Mention\" itemid=\"0\">AgentSmith</span> test</div>",
"name": null,
"thumbnailUrl": null
}
],
"entities": [
{
"type": "clientInfo",
"locale": "fr-FR",
"country": "FR",
"platform": "Web"
}
],
"channelData": {
"teamsChannelId": "19:a438309226204de48783042c5bfd3bd9@thread.skype",
"teamsTeamId": "19:a438309226204de48783042c5bfd3bd9@thread.skype",
"channel": {
"id": "19:a438309226204de48783042c5bfd3bd9@thread.skype"
},
"team": {
"id": "19:a438309226204de48783042c5bfd3bd9@thread.skype"
},
"tenant": {
"id": "c41d586a-6ec1-4ce3-89ed-54a2f844c8e1"
}
},
"action": null,
"replyToId": null,
"value": null,
"name": null,
"relatesTo": null,
"code": null}
然后将前一个json
发送到我们的平台,该平台计算一个简单的文本响应。
一旦从我们的平台收到响应,我只需在以下端点上发出 POST 请求:
正文包括计算的响应
{
"type": "message",
"id": "1503406241867",
"timestamp": "2017-08-22T14:01:31.352Z",
"localTimestamp": "2017-08-22T16:01:31.352+02:00",
"serviceUrl": "https://smba.trafficmanager.net/emea-client-ss.msg/",
"channelId": "msteams",
"from": {
"name": "AgentSmith",
"id": "fake string as I don t know the id"
},
"conversation": {
"isGroup": true,
"id": "19:a438309226204de48783042c5bfd3bd9@thread.skype;messageid=1503406241867",
"name": null
},
"recipient": {
"id": "29:1nxaNQeM7AaQumVmUmPaS4K0gMHZD-FtA_gnJ9xFqZXG5nlpRnsIv-uWeAWQeuKKEQXEEXbwhK4LG1oqvqinGJg",
"name": "John Doe"
},
"textFormat": "plain",
"attachmentLayout": null,
"membersAdded": [],
"membersRemoved": [],
"topicName": null,
"historyDisclosed": null,
"locale": null,
"text": "Désolé, je n'ai pas compris",
"speak": null,
"inputHint": null,
"summary": null,
"suggestedActions": null,
"attachments": [],
"entities": [
{
"type": "clientInfo",
"locale": "fr-FR",
"country": "FR",
"platform": "Web"
}
],
"channelData": {
"teamsChannelId": "19:a438309226204de48783042c5bfd3bd9@thread.skype",
"teamsTeamId": "19:a438309226204de48783042c5bfd3bd9@thread.skype",
"channel": {
"id": "19:a438309226204de48783042c5bfd3bd9@thread.skype"
},
"team": {
"id": "19:a438309226204de48783042c5bfd3bd9@thread.skype"
},
"tenant": {
"id": "c41d586a-6ec1-4ce3-89ed-54a2f844c8d0"
}
},
"action": "message",
"replyToId": "1503406241867",
"value": null,
"name": null,
"relatesTo": null,
"code": null}
请求失败如下:
error: 0.4.0: send message error: statusCode:403, statusCodeMessage:Forbidden,
error: {
"error": {
"code":"ServiceError",
"message":"not member of thread"
}
}
任何帮助,将不胜感激。看不到我建立的回复消息有什么问题。
顺便说一句,我的 webhook 处理程序接收到的对象上的接收者为 null 不是很奇怪吗?