私はnodejsでFirebase authを使ってユーザアカウントを作成しようとしています。それは機能しません、なぜ私は知らない。node.jsでFirebase Authを使用してユーザを作成するにはどうすればよいですか?
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);}
);
エラーがNodeJSによって生成:ここでは、コードと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
私はまったく同じ問題を抱えています!助けてくださいhttp://stackoverflow.com/questions/37504466/firebase-auth-createuserwithemailandpassword-undefined-is-not-a-function?lq=1 –
私はクライアントの匿名ユーザー認証を使用して回避策を見つけました側。あなたのユースケースをうまく説明して、それに基づいて答えを書くことができました。 –