Próbuję utworzyć konto użytkownika za pomocą autoryzacji Firebase w nodejs. To nie działa i nie wiem dlaczego. Oto kod i błąd generowany przez nodejs:Jak utworzyć użytkownika z Firebase Auth w pliku node.js?
var config = {.......}; // i can't share the config
var app = firebase.initializeApp(config);
var db = app.database();
var auth = app.auth();
auth.createUserWithUsernameAndPassword("[email protected]", "@NewPassWord").then(
function(user){ console.log(user);},
function(error){ console.error(error);}
);
Błąd generowania przez NodeJS:
TypeError: Object [object Object] has no method 'createUserWithUsernameAndPassword'
at Object.<anonymous> (/home/antonio/Projects/firebase/app.js:20:6)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:906:3
Mam dokładnie ten sam problem! Proszę pomóc http://stackoverflow.com/questions/37504466/firebase-auth-createuserwithemailandpassword-undefined-is-not-a-function?lq=1 –
Znalazłem obejście tego przy użyciu anonimowego uwierzytelnienia użytkownika od klienta bok. Uprzejmie opracuj swój przypadek użycia, tak, żebym mógł napisać odpowiedź na podstawie tego. –