You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/firebase_auth/firebase_auth_platform_interface/lib/src/platform_interface/platform_interface_firebase_auth.dart
+31Lines changed: 31 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -228,6 +228,19 @@ abstract class FirebaseAuthPlatform extends PlatformInterface {
228
228
/// email/password accounts in the Firebase Console, under the Auth tab.
229
229
/// - **weak-password**:
230
230
/// - Thrown if the password is not strong enough.
231
+
/// - **too-many-requests**:
232
+
/// - Thrown if the user sent too many requests at the same time, for security
233
+
/// the api will not allow too many attemps at the same time, user will have
234
+
/// to wait for some time
235
+
/// - **user-token-expired**:
236
+
/// - Thrown if the user is no longer authenticated since his refresh token
237
+
/// has been expired
238
+
/// - **network-request-failed**:
239
+
/// - Thrown if there was a network request error, for example the user don't
240
+
/// don't have internet connection
241
+
/// - **operation-not-allowed**:
242
+
/// - Thrown if email/password accounts are not enabled. Enable
243
+
/// email/password accounts in the Firebase Console, under the Auth tab.
0 commit comments