ami*_*igo 16 android firebase firebase-authentication
我正在使用Firebase的电子邮件和密码方法注册我的用户.像这样:
mAuth.createUserWithEmailAndPassword(email, password)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
if (task.isSuccessful()) {
FirebaseUser signed = task.getResult().getUser();
writeNewUser(signed.getUid());
new android.os.Handler().postDelayed(
new Runnable() {
public void run() {
updateUser(b);
}
}, 3000);
} else {
new android.os.Handler().postDelayed(
new Runnable() {
public void run() {
onSignupFailed();
}
}, 3000);
}
}
});
Run Code Online (Sandbox Code Playgroud)
用户的电子邮件成功注册后,我希望Firebase发送验证邮件.我知道这可以使用Firebase sendEmailVerification.除了发送此电子邮件之外,我希望在验证电子邮件之前禁用该用户的帐户.这也需要使用Firebase的isEmailVerified功能.但是,我没有成功让Firebase发送验证邮件,我无法弄清楚是否要禁用并启用发送验证邮件的帐户以及验证后.
Ami*_*yay 38
此问题是关于如何使用Firebase发送验证电子邮件.OP无法弄清楚如何禁用和启用发送验证电子邮件的帐户以及验证后的帐户.
此外,这在firebase文档中没有正确记录.所以我正在编写一个有步骤的程序,如果他/她面临问题,可能会有人跟进.
1)用户可以使用createUserWithEmailAndPassword方法.
例:
mAuth.createUserWithEmailAndPassword(email, password)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
Log.d("TAG", "createUserWithEmail:onComplete:" + task.isSuccessful());
// If sign in fails, display a message to the user. If sign in succeeds
// the auth state listener will be notified and logic to handle the
// signed in user can be handled in the listener.
if (!task.isSuccessful()) {
// Show the message task.getException()
}
else
{
// successfully account created
// now the AuthStateListener runs the onAuthStateChanged callback
}
// ...
}
});
Run Code Online (Sandbox Code Playgroud)
如果创建了新帐户,则用户也将登录,并且AuthStateListener将运行onAuthStateChanged回调.在回调中,您可以管理向用户发送验证电子邮件的工作.
例:
onCreate(...//
mAuthListener = new FirebaseAuth.AuthStateListener() {
@Override
public void onAuthStateChanged(@NonNull FirebaseAuth firebaseAuth) {
FirebaseUser user = firebaseAuth.getCurrentUser();
if (user != null) {
// User is signed in
// NOTE: this Activity should get onpen only when the user is not signed in, otherwise
// the user will receive another verification email.
sendVerificationEmail();
} else {
// User is signed out
}
// ...
}
};
Run Code Online (Sandbox Code Playgroud)
现在发送验证邮件可以写成:
private void sendVerificationEmail()
{
FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
user.sendEmailVerification()
.addOnCompleteListener(new OnCompleteListener<Void>() {
@Override
public void onComplete(@NonNull Task<Void> task) {
if (task.isSuccessful()) {
// email sent
// after email is sent just logout the user and finish this activity
FirebaseAuth.getInstance().signOut();
startActivity(new Intent(SignupActivity.this, LoginActivity.class));
finish();
}
else
{
// email not sent, so display message and restart the activity or do whatever you wish to do
//restart this activity
overridePendingTransition(0, 0);
finish();
overridePendingTransition(0, 0);
startActivity(getIntent());
}
}
});
}
Run Code Online (Sandbox Code Playgroud)
现在来登录ActivityActivity:
在这里,如果用户成功登录,那么我们可以简单地调用一个方法来编写逻辑,以检查电子邮件是否已经过验证.
例:
mAuth.signInWithEmailAndPassword(email, password)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
//Log.d("TAG", "signInWithEmail:onComplete:" + task.isSuccessful());
// If sign in fails, display a message to the user. If sign in succeeds
// the auth state listener will be notified and logic to handle the
// signed in user can be handled in the listener.
if (!task.isSuccessful()) {
//Log.w("TAG", "signInWithEmail:failed", task.getException());
} else {
checkIfEmailVerified();
}
// ...
}
});
Run Code Online (Sandbox Code Playgroud)
现在考虑checkIfEmailVerified方法:
private void checkIfEmailVerified()
{
FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
if (user.isEmailVerified())
{
// user is verified, so you can finish this activity or send user to activity which you want.
finish();
Toast.makeText(LoginActivity.this, "Successfully logged in", Toast.LENGTH_SHORT).show();
}
else
{
// email is not verified, so just prompt the message to the user and restart this activity.
// NOTE: don't forget to log out the user.
FirebaseAuth.getInstance().signOut();
//restart this activity
}
}
Run Code Online (Sandbox Code Playgroud)
所以我在这里检查电子邮件是否经过验证.如果没有,则注销用户.
所以这是我正确跟踪事物的方法.
小智 7
将验证发送到用户的电子邮件
FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
user.sendEmailVerification();
Run Code Online (Sandbox Code Playgroud)
检查用户是否通过验证
FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
boolean emailVerified = user.isEmailVerified();
Run Code Online (Sandbox Code Playgroud)
使用FirebaseAuth.getInstance().getCurrentUser().sendEmailVerification()和FirebaseAuth.getInstance().getCurrentUser().isEmailVerified()
无法通过 Firebase SDK 禁用该帐户。您可以做的是使用GetTokenResult包含 Firebase 身份验证 ID 令牌并针对您的自定义后端对其进行验证或为与该用户对应的 Firebase 数据库设置一个标志。我个人会使用 Firebase 数据库中的标志
| 归档时间: |
|
| 查看次数: |
28331 次 |
| 最近记录: |