如何在谷歌行动中为更新(推送通知)配置意图?

时间:2018-02-08 09:39:54

标签: actions-on-google dialogflow google-assistant-sdk api-ai

我已按照https://developers.google.com/actions/assistant/updates

上的所有步骤进行操作

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

我得到以下错误:

  

{       "错误":{           "代码":400,           " message":"目标意图Intent_name不可更新。请检查意图是否已配置更新。",           " status":" INVALID_ARGUMENT"       }   }

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。

对我来说,解决方案是在目标中添加“locale”字段。

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

来源:https://developer.apple.com/download/more/