2

我在 Vue.js 项目中使用 Amplify.Interactions (Lex)。我可以成功发送和接收短信。我在我的请求中指定 requestAttributes 或 sessionAttributes 值时遇到了困难。有谁知道如何解决它?谢谢你。

以下代码有效

Interactions.send("botname", {
    content: "some text,
    options: {
      messageType: "text"
    }
  })
    .then(response => {
      logger.log(response);
    })
    .catch(error => {
      logger.error(error);
    });

但是当我尝试发送以下对象(内容)时,机器人无法识别正确的意图。

JSON.stringify({
 inputText: "some text",
 sessionAttributes: { attr1: "val1", attr2: "val2" }
 })
4

0 回答 0