如何使用liberty.java將watson會話連接到我的webapp(github)?請有人給我詳細的編碼。現在,我有這樣的:如何使用liberty.java將Watson Conversation連接到我的webapp(github)?
public class Conversation {
ConversationService service = new ConversationService("2016-12-06");
service.setUsernameAndPassword("uname","pass");
MessageRequest newMessage = new MessageRequest.Builder().inputText("Hi").build();
String workspaceId = "wsId";
MessageResponse response = service.message(workspaceId, newMessage).execute();
System.out.println(response);
}
怎麼辦我在html中顯示它? –
在這種情況下,您可以在我現在編輯的鏈接中使用簡單的會話。這個SDK在Node.js中,你也可以修改你想要的,在我的情況下,我發現它更簡單,因爲我在公用文件夾內的index.html中進行了更改。 –
謝謝@Sayuri –