We started off with passwordless universal login (hosted page) and were met with a couple of OTP errors:
WE’RE SORRY. SOMETHING WENT WRONG
The logs simply stated this:
...
"details": {
"body": {
"connection": "email",
"email": "martin@xxxxx.com",
"auth0Client": "ey...fQ=="
},
"qs": {},
"error": {
"message": "undefined",
"oauthError": "undefined",
"type": "server_error",
"uri": null
}
},
...
Since there was no response from Auth0’s support and it kept happening in a live environment, we had to act fast (it’s a rather crucial product launch and auth failures like this aren’t something we can afford at this point).
We implemented password login instead, but now the existing members (who weren’t using Google’s OAuth)
could no longer log in nor could they request a new password via the password reset. The UI stated a success message that the reset e-mail was sent out, while the dashboard logged Failed Change Password Request
- User does not exist.
At this point - what are our options? Should we revert to passwordless login with magic link (to avoid the OTP errors)? Is there a simple way to migrate all of the existing passwordless users to the password/database setup and have them generate themselves a new password?
Any (urgent/immediate) help appreciated!