我有两个小型网络应用程序,我在使用Firebase登录后从第一个重定向到第二个。我当前的问题是,在加载新页面后,身份验证数据未保存并且为空。
var ref = new Firebase("https://xxx.firebaseio.com");
var credentials = {};
credentials.email = email;
credentials.password = password;
ref.authWithPassword(credentials, function(error, authData) {
if (error) {
console.log("Login Failed!", error);
document.getElementById("login-status").innerHTML = error;
} else {
console.log("Authenticated successfully with payload:", authData);
console.log("AuthData expires: " + authData.expires);
window.location = "http://localhost:3000/";
}
});
因此,首先我会正确登录,authData
会显示登录详细信息,但在新页面上http://localhost:3000/
authData
为空。
有谁知道如何保持会话?我玩remember
对象,但它没有解决我的问题。
答案 0 :(得分:2)
Firebase身份验证会自动将会话保留在浏览器的本地存储中。因此,当您进入新页面时,用户已经过身份验证。
但是您的代码没有检测到这一点,因为您只是处理主动对用户进行身份验证的情况。
解决方案是也 monitor the authentication state。从该文件:
// Register the callback to be fired every time auth state changes
ref.onAuth(function(authData) {
if (authData) {
console.log("User " + authData.uid + " is logged in with " + authData.provider);
} else {
console.log("User is logged out");
}
});
如果您将此代码段放在新页面中,则会检测到该用户已登录。