使用自定义action.json时,Google操作控制台模拟器请求和响应选项卡无法正常工作

时间:2017-12-18 12:31:42

标签: actions-on-google google-home google-assistant-sdk

我遇到的问题是google home / assitant操作控制台模拟器响应和请求标签无效。至少当我使用自定义action.json时。

对我来说,我不确定是否所有人都有这个问题或只有一些问题。那是使用自定义动作sdk。或者它是一个问题只是因为我的action.json可能没有100%正确配置。

这是action.json:

  {
  "actions": [
    {
      "description": "Default Welcome Intent",
      "name": "MAIN",
      "fulfillment": {
      "conversationName": "testApp"
    },
      "intent": {
        "name": "actions.intent.MAIN",
        "trigger": {
          "queryPatterns": [
            "open special manager",
            "open s p m"
            ]
        }
      }
    }
  ],
  "types": [],
  "conversations": {
    "testApp": {
      "name": "testApp",
      "url": "https://572e66a2.ngrok.io/",
      "fulfillmentApiVersion": 2,
      "in_dialog_intents": [
        {
          "name": "actions.intent.NO_INPUT"
        },
        {
          "name": "actions.intent.SIGN_IN"
        }
      ]
    }
  }

这是请求的图片: enter image description here 正如您所看到的,如果聊天工作正常,那么它只是请求标签中的虚拟内容。

响应选项卡完全为空。但消息和语音正常工作。也在我的谷歌主页上。

有人有想法吗?如有必要,我会添加更多调试信息。响应或请求来自我的服务器的消息会有问题吗? 但实际上是消息,他们正在工作......

0 个答案:

没有答案