Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Email verification in Firebase Console

Is there a way for administrators to see and change the status of email verification from inside the Console? Everything I’ve found so far is based only on the client pushing a verification email from the backend and checking its status. It would be useful for the admin to get an overview of this too.

like image 933
Shane O'Seasnain Avatar asked Nov 07 '22 14:11

Shane O'Seasnain


1 Answers

The email verification status is not shown in the Firebase console. It's not a bad idea, so I'd definitely file a feature request.

For individual users you can use the Firebase Admin SDK to read or change the emailVerified property.

To get the status of all users, you can use the auth:export command of the Firebase CLI.

like image 67
Frank van Puffelen Avatar answered Dec 15 '22 00:12

Frank van Puffelen