我已按照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" } }
答案 0 :(得分:0)
我遇到了同样的问题。
对我来说,解决方案是在目标中添加“locale”字段。
let notification = {
userNotification: {
title: 'titolo',
},
target: {
userId: userId,
intent: intent,
locale: 'it',
}
};