昨天我的Google动作完美运行,但今天却没有。我没有在代码或Dialogflow中进行任何更改。
似乎第一个意图是登录/注册意图,因为两个console.log语句都显示在控制台中。 console.log('Test2')不显示。 日志的最后一行是:“函数执行耗时1265毫秒,状态代码为200”。
你能帮帮我吗?谢谢!
https://i.imgur.com/wQR8qwf.png https://i.imgur.com/evGVqJn.png
app.intent("Default Welcome Intent", (conv, input) => {
console.log('Test1a')
conv.add(new SignIn('To gather your data.'))
console.log('Test1b')
})
app.intent("welkomintent", (conv, input, signin) => {
console.log('Test2')
if (signin.status !== 'OK') {
conv.close('You cannot use this app without registration!');
} else {
conv.add('Welcome back!')
}
})