使用Watson Workspace,我想谈谈我使用IBM Conversation构建的机器人。
为此,我尝试调整watsonwork演示中的代码:https://github.com/watsonwork/watsonwork-echo(此演示演示了如何将应用程序连接到Watson Workspace并回显写在那里的每个'Hello'。) 现在,我不想回复消息,而是将消息提供给Conversation,并将该答案写回Watson Workspace。
我认为通过将第32-44行的app.js更改为
,这应该会非常简单var context = {};
conversation.message({
workspace_id: 'workspace-id',
input: {'text': 'Turn on the lights'},
context: context
}, function(err, response) {
if (err)
console.log('error:', err);
else
console.log(JSON.stringify(response, null, 2));
});
API参考:https://www.ibm.com/watson/developercloud/conversation/api/v1/#send_message (当然还有文件顶部的身份验证)。 但这似乎不起作用;我无法连接到Conversation bot。有没有人做过类似的事情或者可能知道我做错了什么?
谢谢!