目前正在尝试将 Azure Bot Framework 与 Integromat 等外部平台集成。我正在使用下面的代码片段来发送用户提交的名字和手机号码。用户输入被发送到一个 integromat webhook,它发送一个 webhook 响应。
bot.dialog('WebTest', function (session) {
session.send('conversation.id: ' + session.message.address.conversation.id);
session.userData.convoID = session.message.address.conversation.id;
// var request = require('request');
// var url = "https://hook.integromat.com/y6d18ahnsfanbkwqfdmygkwd2ft93vr2"
request.post({
headers: { 'content-type': 'application/x-www-form-urlencoded' },
url: 'https://hook.integromat.com/ynwbud77o7up7rrhl3m8tvdriquhtess',
body: 'first=' + session.userData.first + '&mobile=' + session.userData.mobile + '&convoID=' +session.userData.convoID
}).on('response', function (response) {
//session.send(response);
response.on('data', function (data) {
console.log('data: ' + data);
})
// session.send(data)
});
// session.send(data);
//session.send(response);
session.send("This service is still under construction");
}).triggerAction({ matches: /^webby/i })
响应正确记录在控制台 https://i.stack.imgur.com/XQC8u.png
但是,我不确定如何将其发送回机器人并将其显示给用户。
我已经探索了 Directline API 作为一个选项,获取对话 ID 并遵循文档。我使用了这个链接: https : //directline.botframework.com/v3/directline/conversations/ {{1.convoID}}/activities 并将以下请求内容作为 json 有效负载以及授权密钥作为标头发送:
{
"type": "message",
"from": {
"id": "user1"
},
"text": "hello"
}
尽管为此,我收到 404 错误,并出现“BadArgument”和“未知对话”错误。
任何能让我朝着正确方向前进的帮助都将不胜感激,谢谢!