Patched my application with the following grant_types:
"token_endpoint_auth_method": "client_secret_post",
"app_type": "regular_web",
"grant_types": [
"implicit",
"authorization_code",
"refresh_token",
"client_credentials",
"password"
],
"custom_login_page_on": false
}
Response Code: 200
Status: OK
But when I try perform
“grant_type”: “http://auth0.com/oauth/grant-type/password-realm”
Receive this error:
Response Body: {
“error”: “unauthorized_client”,
“error_description”: “Grant type ‘http://auth0.com/oauth/grant-type/password-realm’ not allowed for the client.”,
“error_uri”: “Application Grant Types”
}
Response Code: 403
Status: Forbidden
Can login, uncheck “password” box, recheck “password” box and “Save Changes” works.