是否可以在不使用Node.js的情况下用Javascript创建IBM Watson Conversation客户端应用程序?

时间:2018-09-11 15:02:23

标签: ibm-watson watson-conversation

是否可以在不使用Node.js的情况下用Javascript创建IBM Watson Conversation客户端应用程序?我正在使用的ERP软件不允许使用Node.js。在普通的javascript中,对Watson的POST请求是什么样的?我看到我需要一些用户/密码,即POST URL。但是,如何发送Watson服务数据?数据对象需要什么样?所有API文档都使用Node。

3 个答案:

答案 0 :(得分:2)

只要您有某种在服务器上运行javascript的方法,就可以使用javascript向IBM Watson发出请求,因为对Watson的POST请求必须使用代理在服务器端运行。

答案 1 :(得分:1)

答案 2 :(得分:0)

我相信您可以按照以下CURL文档进行操作: https://www.ibm.com/watson/developercloud/assistant/api/v1/curl.html?curl#message

curl -X POST -u "{username}":"{password}" --header "Content-Type:application/json" -- 
data "{\"input\": {\"text\": \"Hello\"}}" 
"https://gateway.watsonplatform.net/assistant/api/v1/workspaces/9978a49e-ea89-4493- 
b33d-82298d3db20d/message?version=2018-07-10"

在以下请求中,请确保您提供对上一个请求的响应中返回的上下文JSON 这是(第一个)响应的示例

{
  "intents" : [ {
    "intent" : "hello",
    "confidence" : 0.9755029201507568
  } ],
  "entities" : [ ],
  "input" : {
    "text" : "Hello"
  },
  "output" : {
    "generic" : [ {
      "response_type" : "text",
      "text" : "Hello! What can I do for you?"
    } ],
    "text" : [ "Hello! What can I do for you?" ],
    "nodes_visited" : [ "greeting" ],
    "log_messages" : [ ]
  },
  "context" : {
    "conversation_id" : "a96ec62f-773c-4e84-8be9-f9dbca9f83d0",
    "system" : {
      "dialog_stack" : [ {
        "dialog_node" : "root"
      } ],
      "dialog_turn_counter" : 1,
      "dialog_request_counter" : 1,
      "_node_output_map" : {
        "greeting" : {
          "0" : [ 0, 0 ]
        }
      },
      "branch_exited" : true,
      "branch_exited_reason" : "completed"
    }
  }
}