var Firebase = require("firebase");
var myFirebaseRef = new Firebase("https://amber-fire-6500.firebaseio.com/");
myFirebaseRef.createUser({
email : "guosong@outlook.com",
password : "12345678"
}, function(error) {
if (error === null) {
console.log("User created successfully");
} else {
console.log("Error creating user:", error);
}
});
this is my code, but I got an error as the name shows.
I found this step to fix it, but finally I can’t finish it. Because I can’t find the provider settings mentioned in their document. Can anyone help?
source
share