首先让我告诉你,我在这里问我的第一个问题,所以如果我做错了事,请原谅我。
我有几个节点使用的响应类型不同于“文本”,即使用图像和选项,如我链接的第一张图片所示。当我的节点红色流程(参见图2)激活了聊天机器人助手的此类节点响应时,该节点没有任何输出。
这是我无法通过的节点之一的json。
{"type":"standard",
"title":"analisi sintomi computer",
"output":{"generic":[{
"title":"Quale modello di PC stai utilizzando?",
"source":"http://pcsupport.lenovo.com/~/media/images/staticpages/thinkpad_ss.ashx?la=en",
"description":"puoi trovare il codice qui",
"response_type":"image"},
{"title":"Quale modello di PC stai utilizzando?","options":[{"label":"T470","value":{"input":{"text":"T470"}}},
{"label":"T450","value":{"input":{"text":"T450"}}},
{"label":"T230","value":{"input":{"text":"T230"}}}],"description":"(vedi qui sopra come individuare il codice esatto)","response_type":"option"},
{"values":[],"response_type":"text","selection_policy":"sequential"}]},"parent":"node_1_1536313247338","metadata":{},
"conditions":"$tipoDevice:computer","dialog_node":"node_2_1536588442374"}
node-red中的节点是否有问题,或者我缺少什么? 谢谢您的帮助
答案 0 :(得分:2)
在我看来,沃森助手/沃森对话的节点未使用必需的API版本来返回多媒体响应:
https://github.com/watson-developer-cloud/node-red-node-watson/blob/master/services/conversation/v1.js
该文件的版本编码为“ 2018-02-16”。但是,you need API version "2018-07-10" for that, see the Release Notes。
您可以将API版本设置为msg.params.version
。