I’m trying to reset my user’s password using the Web Realm SDK. I followed the docs:
// The user's email address
const email = "joe.jasper@example.com"
await app.emailPasswordAuth.sendResetPasswordEmail({ email });
but replaced the email address above with that associated with my user.
However I get an invalid json
Authentication error in the logs.
What am I doing wrong? Thanks in advance!