我终于在创建用户以及登录和注销方面进行了身份验证。但是现在,我想实现一些检查用户是否已经存在于Firebase中的工具。我查了一下,但似乎找不到具体答案。
例如,如果我的电子邮件地址是:abc12@gmail.com,并且其他人尝试使用相同的电子邮件地址进行注册,我如何告诉他们已经被使用了?
login(e) {
e.preventDefault();
fire.auth().signInWithEmailAndPassword(this.state.email, this.state.password)
.then((u) => {
}).catch((error) => {
console.log(error);
});
}
signup(e) {
e.preventDefault();
fire.auth().createUserWithEmailAndPassword(this.state.email, this.state.password)
.then((u) => {
}).catch((error) => {
console.log(error);
});
}
答案 0 :(得分:2)
方法createUserWithEmailAndPassword
返回的错误具有code
属性。根据{{3}}错误code
已在使用中的auth / email已经使用:
如果已经存在具有给定电子邮件的帐户,则抛出该错误 地址。
至少,您可以使用条件语句,例如if
/ else
或switch
来检查该code
并显示/记录/发送/等消息或给用户的代码:
fire.auth().createUserWithEmailAndPassword(this.state.email, this.state.password)
.then(u => {})
.catch(error => {
switch (error.code) {
case 'auth/email-already-in-use':
console.log(`Email address ${this.state.email} already in use.`);
case 'auth/invalid-email':
console.log(`Email address ${this.state.email} is invalid.`);
case 'auth/operation-not-allowed':
console.log(`Error during sign up.`);
case 'auth/weak-password':
console.log('Password is not strong enough. Add additional characters including special characters and numbers.');
default:
console.log(error.message);
}
});
希望有帮助!
答案 1 :(得分:1)
简单的答案:
CASE
const uidExists = auth().getUser(uid).then(() => true).catch(() => false))
答案 2 :(得分:0)
from firebase_admin import auth
user = auth.get_user_by_email(email)
print('Successfully fetched user data exists: {0}'.format(user.uid))
在python管理服务器中