如何在Google Actions中为更新(按下毫无疑问)配置意图



我遵循了https://developers.google.com/actions/assistant/updates

上给出的所有步骤

但是当我试图测试对话时发送APIhttps://actions.googleapis.com/v2/conversations:send?access_token="my_access_token"

我要低于错误:

{ "错误": { "代码":400, "消息":"目标意图Intent_name无法更新。请检查是否已为更新配置了意图。 "状态":" Invalid_argument" } }

我也有同样的问题。

对我来说,解决方案是在目标中添加"位置"字段。

let notification = {
    userNotification: {
        title: 'titolo',
    },
    target: {
        userId: userId,
        intent: intent,
        locale: 'it',
    }
};

来源:目标

相关内容

  • 没有找到相关文章

最新更新