我是初学者,我无法理解使用Node.js客户端库(Actions SDK)构建实现的方法。开发文档使用firebase的Actions SDK,但我不想通过firebase部署履行。
因此,我不知道如何使用Actions SDK在我自己的服务器中部署履行。请告诉我怎么做。谢谢!
答案 0 :(得分:2)
以下是nodeJs库的一个工作示例
userSchema.pre('save', function(next){
if(!this.isModified('password'))
return next();
bcrypt.hash(this.password, null, null, (err,hash)=>{
if(err) return next(err);
this.password=hash;
next();
});
});
以上示例将返回“Hello World”
你还需要记住api.ai& action-on-google仅接受https履行。没有SSL,您将无法连接到您的webhook。