firebase new user registration with php sdk -


in android, using android sdk can create new user somehow this:

  mfirebaseref.createuser(email, password, new firebase.valueresulthandler<java.util.map<string, object>>() {                 public void onsuccess(java.util.map result) {                     system.out.println("successfully created user account uid: " + result.get("uid"));                 }                 public void onerror(com.firebase.client.firebaseerror firebaseerror) {                     system.err.println("error while creating user " + firebaseerror);                 } 

with php sdk how can create new user in authentication section? can please tell me. grateful you. :)

there no official php sdk firebase. if think there should one, file feature request.

you have call user-creation methods client app directly, or server using 1 of supported admin sdk platforms.


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -