{“error”:“invalid_grant”,“error_description”:“Wrong email or password.”}
I’m testing new user signups and facing the error above when testing a new user signup which sends a POST request with the payload below. The issue seems to be environment related as exact same request and payload works fine in another environment under the same auth0 account. What could cause this error?
{
“client_id”: “",
“username”: "”,
“password”: “",
“realm”: "”,
“grant_type”: “http://auth0.com/oauth/grant-type/password-realm”,
“scope”: “openid email profile”,
“audience”: “",
“redirect_uri”: "”
}