如何在Firebase 3中创建用户并且不对其进行身份验证?

时间:2016-06-09 15:47:28

标签: firebase angularfire firebase-authentication

我正在开展一个angularfire项目,我想知道如何在Firebase 3中创建用户,一旦完成,请不要对指定用户进行身份验证。在之前的Firebase版本中,我们使用了名为createUser(email,password)的方法。现在我们只有createUserWithEmailAndPassword(电子邮件,密码)方法,它创建并验证指定的用户。

2 个答案:

答案 0 :(得分:8)

问题的答案是:你不能。

我们有类似的情况,我们有' admin'可以创建其他用户的用户。使用2.x时,这很容易。使用3.x时失败,因为该功能已完全删除。

如果您在3.x中创建用户,则以该用户身份进行身份验证,并取消验证已登录的帐户。

这会更深入,因为您需要重新进行身份验证以创建另一个用户;因此,管理员要么手动执行,要么(畏缩)在本地存储身份验证数据,这样就可以实现自动化过程(畏缩,请不要这样做)

Firebase公开强调2.x将继续受到支持,因此您可能只想避免使用3.x.

更新

其中一个Firebaser实际上想出了一个解决方法。从概念上讲,您有一个管理员用户登录。然后,您创建第二个连接到firebase并与另一个用户进行身份验证,然后该连接将创建新用户。冲洗 - 重复。

再次更新

查看此问题和答案

Firebase kicks out current user

答案 1 :(得分:1)

您可以使用云功能和firebase admin SDK进行此操作。 创建如下所示的HTTP函数。

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

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

// // Create and Deploy Your First Cloud Functions
// // https://firebase.google.com/docs/functions/write-firebase-functions
//
exports.createUser = functions.https.onRequest((request, response) => {
    if (request.method !== "POST") {
        response.status(405).send("Method Not Allowed");
    } else {
        let body = request.body;

        const email = body.email;
        const password = body.password;
        const displayName = body.displayName;

        admin.auth().createUser({
            email: email,
            emailVerified: false,
            password: password,
            displayName: displayName,
            disabled: false
        })
        .then((userRecord) => {
            return response.status(200).send("Successfully created new user: " +userRecord.uid);
        })
        .catch((error) => {
            return response.status(400).send("Failed to create user: " + error);
        });
    }
});

在您的客户端应用中,使用Http请求(例如,使用ajax)调用此函数

$.ajax({
       url: "the url generated by cloud function",
       type: "POST",
       data: {
           email: email,
           password: password,
           displayName: name
       },
       success: function(response) {
            console.log(response);
       },
       error: function(xhr, status, error) {
             let err = JSON.parse(xhr.responseText);
                 console.log(err.Message);
             }
       });