有什么方法可以在firebase上创建用户而无需自动登录和firebase-admin?像这样:
auth.createUserAndRetrieveDataWithEmailAndPassword(cd.email,cd.senha).then(user => {
console.log(user);
})
.catch(error => {
console.log("error");
});
或
auth.createUserWithEmailAndPassword(cd.email,cd.senha).then(user => {
console.log(user);
})
.catch(error => {
console.log("error");
});