gpt4 book ai didi

node.js - 我可以在 Cloud Functions Http 触发器中的 Firebase 身份验证上创建用户吗?

转载 作者:行者123 更新时间:2023-12-02 20:07:39 25 4
gpt4 key购买 nike

是否可以从 Cloud Functions 内部创建用户(电子邮件/密码类型)?我正在寻找对此的引用,但一无所获。

最佳答案

createUser() 函数可以让您做到这一点。

admin.auth().createUser({
email: "user@example.com",
emailVerified: false,
password: "secretPassword",
displayName: "John Doe",
photoURL: "http://www.example.com/12345678/photo.png",
disabled: false
})
.then(function(userRecord) {
// See the UserRecord reference doc for the contents of userRecord.
console.log("Successfully created new user:", userRecord.uid);
})
.catch(function(error) {
console.log("Error creating new user:", error);
});

https://firebase.google.com/docs/auth/admin/manage-users#create_a_user

关于node.js - 我可以在 Cloud Functions Http 触发器中的 Firebase 身份验证上创建用户吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43806750/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com