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
Post a Comment