本文介绍了Firebase:未授权此域的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我导入了 Firebase JS v3 API ,并用于通过以下方式初始化Firebase:

I imported Firebase JS v3 API and used to initialize Firebase using:

firebase.initializeApp(config);

但是,该应用无法通过本地主机上的Web浏览器正确加载,导致出现以下错误:

However the app failed to load correctly via web browser on localhost, resulting in the following error:

firebase.js:71:1333

firebase.js:71:1333

推荐答案

我通过将localhost域添加到OAuth redirect domains(在Firebase控制台的Auth选项卡上的SETUP SIGN IN METHOD内)解决了该问题.

I solved the problem by adding the localhost domain to OAuth redirect domains (within SETUP SIGN IN METHOD on the Auth tab of Firebase console).

这篇关于Firebase:未授权此域的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 23:55