How to create a user using the Firebase REST API?

In the front-panel Javascript library, you can call createUser to create a user and load it under "Registered Users" under the Login and Auth account in the control panel. I would like to do the same in my backend using .Net so that it can record a new user. So how can I do this?

+3
firebase
source share
2 answers

It is currently not possible to create a user through the Firebase REST API.

on this topic:

  • firebase PHP: create user
  • Create Firebase Using the REST API
+4
source share

If someone is looking for this and wanted to create a user for authentication using PHP. You can read this: http://firebase-php.readthedocs.io/en/latest/user-management.html#create-a-user-with-email-and-password

:)

0
source share

All Articles