Is there a way to know that a user clicked on the verification link?
问题 Here's the code I'm using to send a verification email (taken from the official docs) var user = firebase.auth().currentUser; user.sendEmailVerification().then(function() { // Email sent. }).catch(function(error) { // An error happened. }); User object has emailVerified property. It doesn't change when user clicks the link in the mail. It only updates on re-login. Is there a way for an app to know that a user sucessfully verified their address? 回答1: firebaser here There is no client-side