I am attempting to create users via email and password and I have enabled email and password in the authentication tab of the console.
Unfortunately, it is returning a MethodNotAllowed 405 error whenever I proceed. My code currently is very simple, I have a textbox for each the email and password and it looks like so:
Request responded with status code=MethodNotAllowed, response=<html>
<head><title>405 Not Allowed</title></head>
<body bgcolor="white">
<center><h1>405 Not Allowed</h1></center>
<hr><center>nginx</center>
</body>
</html>
I am attempting to create users via email and password and I have enabled email and password in the authentication tab of the console.
Unfortunately, it is returning a MethodNotAllowed 405 error whenever I proceed. My code currently is very simple, I have a textbox for each the email and password and it looks like so:
FirebaseResponse response = client.CreateUser(email.Text, password.Text);
Firebase Response: