在哪里可以找到我的Firebase apiKey和authDomain?
我正在设置环境以连接到数据库。
export const environment = {
production: false,
firebase: {
apiKey: '...',
authDomain: '...',
databaseURL: 'https://******-project.firebaseio.com',
projectId: '*******-project',
}
};
但是在firebase控制台中找不到apiKey和authDomain。
答案 0 :(得分:14)
如果您不想创建Web应用程序,而上面的其他非创建解决方案对您也不起作用,就像它对我不起作用一样,请参考以下小技巧:
firebaseConfig = {
apiKey: (this one's easy, it's in the 'General' section in your project settings page, aka the Gear icon button),
authDomain: "{project_id}.firebaseapp.com", (without brackets)
databaseURL: "https://{project_id}.firebaseio.com",
projectId: (again, found in 'General' section in Project Settings),
storageBucket: "{project_id}.appspot.com",
messagingSenderId: (found in 'Cloud Messaging' section in Project Settings)
答案 1 :(得分:7)
答案 2 :(得分:5)
无需创建新应用即可找到这些属性的最简单方法是在Firebase控制台中转到您的项目。
下一步,点击顶部左侧边栏中项目概述旁边的齿轮图标,然后点击项目设置。
在常规标签下(默认情况下会打开该标签),向下滚动直到您找到您的应用部分。在该区域内,您会找到 Firebase SDK代码段标题。
在此之下,您将有三个复选框。转到 Config 复选框,您将看到一个JS对象声明,其中包含与应用程序连接到数据库所需的所有信息。
答案 3 :(得分:2)
转到console,然后打开您的项目
点击验证
查看右上角,然后单击网络设置
然后复制并粘贴
答案 4 :(得分:0)
您可以通过以下方式之一找到它: