我们正在使用api.api实现 在要求使用代码登录后: app.askForSignIn();
我们得到input.unknown的intent调用 我们添加了签名处理程序但它没有被称为
const SIGN_IN = 'sign.in';
actionMap.set(SIGN_IN, signInLogic);
function signInLogic(app) {
let intent = app.getIntent();
console.log('signInLogic start intent: ', intent);
}
需要在api.ai中定义什么才能获得正确的意图调用? 我找不到定义系统意图的地方