Reputation: 4258
In Firebase Auth 9.6.1 Release(Android).
I am able to send the verification link to user email address. But I don't understand how to know if the user has verified his/her email address? Is there any way to know that user has verified the email address successfully so that I can change the status of his/her account Pending to Active.
Upvotes: 2
Views: 609
Reputation: 1732
When you access UserInfo
instance you can call isEmailVerified()
on it. See changelog. It was added in release 9.6.1.
Upvotes: 4