Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I change the number of login attempts in Firebase?

I am a mobile developer and I am using firebase for my app which have built with Cordova and Ionic framework. So .. I implemented Firebase Auth functionalities such login/signup, email verification, forgot your password, ... But I found this message today while logging in with app.

"We have blocked all requests from this device due to unusual activity. Try again later."

How do I change the number of login attempts in Firebase?


1 Answers

You can't change login attempts. A blocked user can retry after a few minutes.

Firebase SDK will throw errors you attempts like following:

  • multiple times wrong password attempts.
  • multiple create a new password, anonymous account tries
  • multiple password recovery tries
like image 166
Weshen Avatar answered Sep 19 '25 01:09

Weshen