bugthesystem / FireSharp

An asynchronous cross-platform .Net library for Firebase
The Unlicense
690 stars 146 forks source link

405 Not Allowed MethodNotAllowed When calling .CreateUser() #139

Closed NBull92 closed 4 years ago

NBull92 commented 4 years ago

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:

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>