I’m testing unblock user blocked by Brute-force Protection on our site(using Auth0.js).
I can see logs on Auth0 dashboard, there are at least two forms of “fcoa” errors below.
Is there any Auth0 Docs mentioned “too_many_logins” and “too_many_attempts”?
“type”: “fcoa”,
“description”: “Too many logins with the same username or email.”,
“error”: {
“message”: “Too many logins with the same username or email.”,
“oauthError”: “Too many logins with the same username or email.”,
“type”: “too_many_logins”,
“uri”: null
}
“type”: “fcoa”,
“description”: “Your account has been blocked after multiple consecutive login attempts. We’ve sent you an email with instructions on how to unblock it.”,
“error”: {
“message”: “Your account has been blocked after multiple consecutive login attempts. We’ve sent you an email with instructions on how to unblock it.”,
“oauthError”: “Your account has been blocked after multiple consecutive login attempts. We’ve sent you an email with instructions on how to unblock it.”,
“type”: “too_many_attempts”,
“uri”: null
}
Sincerely,