我必须定义“ app”以便将用户详细信息从dialogflow存储到firestore数据库
const app = new App({request:request, response:response});
要使用此行代码,我需要在Firestore代码中定义“ App”,为此我已经使用了此行,
const App = require('firebase-functions').DialogflowApp;
哪个让我出错?
答案 0 :(得分:0)
DialogflowApp
。它在deprecated version of the actions-on-google库中定义。
如果您刚开始在Google上使用Actions,则应该不使用此库。
相反,您应该使用latest version(v2),其处理方式略有不同。
它也与Firebase / Firestore“应用”不同。 Firebase使用其“应用程序”与Firebase系统进行通信。
您不需要将它们中的任何一个称为“ app”。