firebase.auth.Auth.Persistence未定义

时间:2017-08-25 18:01:37

标签: javascript firebase firebase-authentication

这是我第一次使用firebase而且我正在尝试更改持久性,但是遇到了上述错误。这是我正在使用的代码。为简洁起见,我省略了配置设置:

firebase.initializeApp(config);
firebase.auth().setPersistence(firebase.auth.Auth.Persistence.SESSION)
.catch(function(error) {
    console.log(error.message);
});

firebase网站上的示例(here)与我正在做的事情没有任何不同,为什么我不能通过firebase.auth.Auth.Persistence.SESSION而不会收到错误?

如果我跳过该部分,只需致电

firebase.auth().signInAnonymously()

然后我成功登录,所以它好像我无法联系firebase。是否有某种后端设置我必须先做?还是我需要打电话的其他东西?

感谢您的帮助。

0 个答案:

没有答案