gpt4 book ai didi

react 原生的 Firebase 身份验证错误?

转载 作者:行者123 更新时间:2023-12-04 16:07:39 26 4
gpt4 key购买 nike

import React, { Component } from 'react';
import RNFirebase from 'react-native-firebase';


const firebase = RNFirebase.initializeApp({
apiKey: 'KEY',
authDomain: 'APPNAME.firebaseapp.com',
databaseURL: 'https://APPNAME-#####.firebaseio.com/',
projectId: 'APPNAME-#####'});

export default firebase;

这是我的代码(显然有替换)我已经添加了所需的 pod 和 GoogleService-Info.plist文件也。

我收到错误

"Failed to initialize app. FirebaseOptions missing or invalid "appID" property"



有谁知道为什么会这样?

最佳答案

如果您已正确设置应用程序,则无需执行第二次 initializeApp,因为它会自动为您完成。您应该只导入 firebase 并按照 documentation 快乐地工作.

如果您尝试做的是进行多次初始化,或就此进行手动初始化,则需要检查 documentation为了那个原因。基本上你的配置是不完整的,因为完整的配置是;

// pluck values from your `GoogleService-Info.plist` you created on the firebase console
const iosConfig = {
clientId: 'x',
appId: 'x',
apiKey: 'x',
databaseURL: 'x',
storageBucket: 'x',
messagingSenderId: 'x',
projectId: 'x',

// enable persistence by adding the below flag
persistence: true,
};

// pluck values from your `google-services.json` file you created on the firebase console
const androidConfig = {
clientId: 'x',
appId: 'x',
apiKey: 'x',
databaseURL: 'x',
storageBucket: 'x',
messagingSenderId: 'x',
projectId: 'x',

// enable persistence by adding the below flag
persistence: true,
};

关于 react 原生的 Firebase 身份验证错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48068105/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com