Using Firebase with Electron(将 Firebase 与 Electron 一起使用)
问题描述
我正在尝试将 Firebase 与 Electron 一起使用.当像我在网页上一样安装它时,它不起作用,因为 Electron 页面托管在本地并且没有 hostname
.这是我遇到的错误...
I'm trying to use Firebase with Electron. When installing it just like I would on a web page it doesn't work because Electron pages are hosted locally and don't have a hostname
. This is the error I'm getting...
Uncaught Error: This domain is not authorized for OAuth operations for your Firebase project. Edit the list of authorized domains from the Firebase console.
我无法将空(或通配符)授权域添加到 Firebase 控制台,因此我被卡住了.有没有人知道如何解决这个问题?
I can't add an empty (or wildcard) authorized domain to the Firebase console so I'm therefore stuck. Does anybody have any ideas of how to work around this?
这是我正在使用的代码,它只是标准样板,没有额外的......
edit: Here's the code I'm using, it's just the standard boilerplate, nothing extra...
<script src="aHR0cHM6Ly93d3cuZ3N0YXRpYy5jb20vZmlyZWJhc2Vqcy9saXZlLzMuMC9maXJlYmFzZS5qcw=="></script>
<script>
var config = {
apiKey: "AIzaSyBvmmPB0_Oddc-02cUj3Ntt3wi8jSxxxx",
authDomain: "xxxxx-d24ad.firebaseapp.com",
databaseURL: "https://xxxxx-d24ad.firebaseio.com",
storageBucket: "",
};
firebase.initializeApp(config);
</script>
推荐答案
现在,您可以通过从配置中删除 authDomain 行来抑制此错误.Auth signInWithPopup/signInWithRedirect 操作需要 authDomain,但其他一切都应该工作.
For now, you can suppress this error by removing the authDomain line from your config. authDomain is needed for the Auth signInWithPopup/signInWithRedirect operations, but everything else should work.
只有在您实际尝试执行 signInWithPopup/Redirect 时才会引发该错误的库版本正在开发中.
A version of the library that throws that error only when you actually try to do a signInWithPopup/Redirect is in the works.
这篇关于将 Firebase 与 Electron 一起使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 Firebase 与 Electron 一起使用
- 是否可以将标志传递给 Gulp 以使其以不同的方式 2022-01-01
- 如何调试 CSS/Javascript 悬停问题 2022-01-01
- 我不能使用 json 使用 react 向我的 web api 发出 Post 请求 2022-01-01
- 为什么悬停在委托事件处理程序中不起作用? 2022-01-01
- 如何向 ipc 渲染器发送添加回调 2022-01-01
- 如何显示带有换行符的文本标签? 2022-01-01
- 从原点悬停时触发 translateY() 2022-01-01
- 为什么我的页面无法在 Github 上加载? 2022-01-01
- 在不使用循环的情况下查找数字数组中的一项 2022-01-01
- 使用 iframe URL 的 jQuery UI 对话框 2022-01-01