gpt4 book ai didi

android - 如何将不同的 firebase 数据库连接到 release/beta/alpha 版本?

转载 作者:太空狗 更新时间:2023-10-29 13:05:27 27 4
gpt4 key购买 nike

我有一个应用程序应该具有不同的 Firebase 数据库、用于发布和测试版的 Firebase 存储,但我无法将 Firebase 连接到多个项目,因为 SHA 证书指纹应该是不同的。

这是来自 Firebase 的错误: Firebase error

同时,我无法使用不同的签名证书在 Google Play 应用程序上上传。

这是来自 Google Play 控制台的错误: Google play error

是否有可能以某种方式为一个项目使用不同的 Firebase 数据库?两个版本都将进入 Google Play,都应该被签名,因此调试版本在当前情况下无法运行。

最佳答案

是的,一个项目可以有不同的 Firebase 数据库。不要添加 SHA1 key 。如错误“您可以省略 SHA1”中所述

在任意一个firebase项目中,进入authentication -> SIGN-IN METHOD-> GOOGLE,点击edit选项,会打开一个 View ,如下图

enter image description here

展开'Whitelist client ids *' 点击add,添加其他firebase项目的client Id,你可以在google-services.json中找到它。

"oauth_client": [
{
"client_id": "583957834728-jprivhot8johm3himgkmhqnnlmh1nldj.apps.googleusercontent.com",
"client_type": 3
}
],

首先为其他 Firebase 项目初始化一个 FirebaseApp 实例

    FirebaseOptions options = new FirebaseOptions.Builder()
.setApplicationId("1:530266078999:android:481c4ecf3253701e") // Required for Analytics.
.setApiKey("AIzaSyBRxOyIj5dJkKgAVPXRLYFkdZwh2Xxq51k") // Required for Auth.
.setDatabaseUrl("https://project-1765055333176374514.firebaseio.com/") // Required for RTDB.
.build();
FirebaseApp.initializeApp(this /* Context */, options, "secondary");

applicationid、Apikey和URL应该是二级数据库的。这些可以在这里找到 settings->project settings->General tab

验证辅助数据库。

AuthCredential credential = GoogleAuthProvider.getCredential(acct.getIdToken(), null);
FirebaseApp app = FirebaseApp.getInstance("secondary");
FirebaseAuth.getInstance(app).signInWithCredential(credential)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {

// If sign in fails, display a message to the user. If sign in succeeds
// the auth state listener will be notified and logic to handle the
// signed in user can be handled in the listener.
if (!task.isSuccessful()) {
Log.w(TAG, getString(R.string.signin_authentication_failed_msg), task.getException());
Toast.makeText(SignInActivity.this,
getString(R.string.signin_authentication_failed),
Toast.LENGTH_SHORT).show();


}
else {
//do something - login sucess

}
}
});

这应该修复身份验证部分。

下篇如何访问第二个firebase数据库??

访问二级 Firebase 项目

FirebaseApp app = FirebaseApp.getInstance("secondary");
FirebaseDatabase secondaryDatabase = FirebaseDatabase.getInstance(app);

TestEntry testEntry = new TestEntry(orderId);

DatabaseReference orderIdReference = secondaryDatabase.
getReference().child(orderId);

Log.d("Secondary db", orderIdReference.toString());

orderIdReference.setValue(testEntry);

来源:https://firebase.googleblog.com/2016/12/working-with-multiple-firebase-projects-in-an-android-app.html

关于android - 如何将不同的 firebase 数据库连接到 release/beta/alpha 版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48524689/

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