How can I create a firebase user from a node.js client? I see that there is a simple login, but it looks as expected from a web browser. I would like to authenticate with my secret firebase database and then call createuser api somehow.
As my system is built, clients only send requests to the server for processing. Thus, I have a log of all the actions taken by each user, and I can guarantee that every change is applied to my other databases, as well as before it turns into firebase. Also, I do not want users to be able to create other users. Firebase is just a lot of work for me, but I also use a simple login to verify the user, and then change it to the login token in order to be able to check user permissions in auth according to security rules.
source
share