我使用这个简单的代码在我的网络应用程序上进行身份验证
firebase.auth().signInWithCustomToken(token).catch(function(error) {
// Handle Errors here.
var errorCode = error.code;
var errorMessage = error.message;
// ...
});
身份验证后,我在浏览器中收到以下错误:'Firebase TypeError:无法读取未定义的属性'ac',这似乎指向此处的错误:
h.set = function(a, b, c) {
var d = this.aa(a, c)
, e = this
, f = Si(this, a.B);
return f.set(d, b).then(function() {
return f.get(d)
}).then(function(b) {
"local" != a.B || this.ac || (e.W[d] = b);
})
}
;
我正在使用汇总和 buble 编译我的 es6 代码。另请注意,在服务器响应中,我似乎已成功进行身份验证。
因为我得到了以下回复:
{
"kind": "identitytoolkit#VerifyCustomTokenResponse",
"idToken": "token",
"refreshToken": "refreshtoken",
"expiresIn": "3600"
}
请帮忙。谢谢。