我遵循了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',
}
};
来源:目标