如何将不同的 firebase 数据库连接到 release/beta/alpha 版本?
How to connect different firebase databases to release/beta/alpha versions?
我有一个应用程序应该有不同的 Firebase 数据库,用于发布和 beta 版本的 Firebase 存储,但我无法将 Firebase 连接到多个项目,因为 SHA 证书指纹应该是不同的。
这是来自 Firebase 的错误:
同时我无法使用不同的签名证书在 Google Play 应用程序上上传。
这是来自 Google Play 控制台的错误:
是否有可能以某种方式为一个项目使用不同的 Firebase 数据库?两个版本都将 Google 播放,都应该被签名,因此调试版本在当前情况下无法运行。
是的,一个项目可以有不同的 Firebase 数据库。
不要添加 SHA1 密钥。如错误中所述'you can omit the SHA1'
在任意一个firebase项目中,进入authentication -> SIGN-IN METHOD-> GOOGLE,点击edit选项,会打开一个视图,如下图
展开'Whitelist client ids *'点击添加,添加另一个firebase项目的client Id,可以在google-[=42中找到=].
"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);
我有一个应用程序应该有不同的 Firebase 数据库,用于发布和 beta 版本的 Firebase 存储,但我无法将 Firebase 连接到多个项目,因为 SHA 证书指纹应该是不同的。
这是来自 Firebase 的错误:
同时我无法使用不同的签名证书在 Google Play 应用程序上上传。
这是来自 Google Play 控制台的错误:
是否有可能以某种方式为一个项目使用不同的 Firebase 数据库?两个版本都将 Google 播放,都应该被签名,因此调试版本在当前情况下无法运行。
是的,一个项目可以有不同的 Firebase 数据库。 不要添加 SHA1 密钥。如错误中所述'you can omit the SHA1'
在任意一个firebase项目中,进入authentication -> SIGN-IN METHOD-> GOOGLE,点击edit选项,会打开一个视图,如下图
展开'Whitelist client ids *'点击添加,添加另一个firebase项目的client Id,可以在google-[=42中找到=].
"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);