skip to Main Content

Invalid Firebase Email/Password Auth Handler (missing providerId)

After using createUserWithEmailAndPassword from firebase/auth, Firebase sends a verification email to the user. The verification link successfully verifies the email, but instead of redirecting back to my app, I am redirected to the following URLs: Local with the emulator: http://localhost:9099/emulator/auth/handler?apiKey=fake-api-key&appName=%5BDEFAULT%5D&authType=reauthViaRedirect&redirectUrl=http%3A%2F%2Flocalhost%3A3000%2Fapp&v=9.21.0&eventId=VBnwo5RI30cI7UvoCwfBQfZXNmmm%3A%3A%3A7630387099…

VIEW QUESTION

Firebase – GoogleAuthProvider – Option to choose account

I'm working on a project in Flutter. I use this code: _googleAuthProvider.setCustomParameters({'prompt': 'select_account'}); UserCredential userCredential; if (kIsWeb) { userCredential = await _firebaseAuth.signInWithPopup(_googleAuthProvider); } else { userCredential = await _firebaseAuth.signInWithProvider(_googleAuthProvider); } On web I can choose which account I want to…

VIEW QUESTION
Back To Top
Search