帐户关联不起作用(Dialogflow)

时间:2018-08-22 05:55:59

标签: dialogflow actions-on-google

我在Node服务器中有两个意图(我正在使用-google Node库上的actions)来管理帐户链接流程。第一个看起来像这样:

app.intent("test.login", conv => {
  conv.ask(new SignIn());
});

第二个:

app.intent("test.login.callback", (conv, params, signin) => {
  if (signin.status === 'OK') {
    console.log(JSON.stringify(conv.user));
  } else {
    conv.ask("Uuups");
  }
});

在Dialogflow中,我的代理中有这两个意图,第二个是“ actions_intent_SIGN_IN”事件。 “操作”控制台中的“帐户”链接配置是这样的: enter image description here

每次我在模拟器(或移动设备)中首次请求启动帐户链接的意图时,Dialogflow都会返回此错误:

enter image description here

第二个意图直接执行,并且在模拟器的“调试”选项卡中,我看到了:

enter image description here

该网址在执行时返回错误(500)。 任何人都可以帮助我使其正常工作吗?

0 个答案:

没有答案