我有一個Firebase應用程序連接到monaca CLI和OnsenUI。我正在嘗試創建一個用戶並以相同的操作登錄它們。 我可以成功地創建一個用戶,但我不能登錄。當我登錄他們在我收到以下錯誤使用Firebase登錄用戶時出現「auth/user-not-found」
auth/user-not-found
和
There is no user record corresponding to this identifier. The User may have been deleted
我證實,新用戶是在分貝...這是我的代碼註冊和登錄
//signup function stuff
var login = function() {
console.log('got to login stuff');
var email = document.getElementById('username').value;
var password = document.getElementById('password').value;
//firebases authentication code
firebase.auth().createUserWithEmailAndPassword(email, password).catch(function(error) {
// Handle Errors here.
var errorCode = error.code;
var errorMessage = error.message;
console.log('User did not sign up correctly');
console.log(errorCode);
console.console.log(errorMessage);
});
firebase.auth().signInWithEmailAndPassword(email, password).catch(function(error) {
console.log(error.code);
console.log(error.message);
});
fn.load('home.html');
};
創建一個用戶自動記錄該用戶,因此您不需要分開登錄它們。 –