用于Firebase身份验证的云功能触发器

时间:2017-05-04 12:52:51

标签: firebase firebase-realtime-database firebase-authentication google-cloud-functions

我正在使用提供商Google和Facebook进行使用firebase身份验证的身份验证。现在我想使用Cloud Functions for firebase。我想使用功能中的身份验证触发器将用户信息推送到数据库节点。有人可以告诉我如何在认证触发器onCreate(event => ...)

中使用firebase.ref()。push()

1 个答案:

答案 0 :(得分:0)

您需要使用firebase-admin

const functions = require('firebase-functions');
const admin = require('firebase-admin');

admin.initializeApp(functions.config().firebase);

return admin.database().ref('...').push(
    {foo: 'someValue'}
);