我的项目在本地运行良好,当我将其部署到 Firebase 托管时。在 Edge 上也可以正常工作,但在我部署 Chrome 时无法正常工作。我得到如下所示的错误。我认为“身份验证”过程从未完成,但我不知道为什么:(
代码非常简单:
signIn: function () {
var that = this;
this.$.auth.signInWithPopup()
.then(function (res) {
that.fire('feedback-positivo', 'Has iniciado sesión');
that.saveProfile(res.user, res.credential);
})
.catch(function (error) {
console.log('Error', error.message, error.code);
});
},