我有一个应用程序应该有不同的Firebase数据库,Firebase存储版用于发行版和测试版但我无法将Firebase连接到多个项目,因为SHA证书指纹应该是不同的。
与此同时,我无法使用不同的签名证书上传Google Play应用。
是否有可能以某种方式为一个项目提供不同的Firebase数据库?两个版本都将进入Google Play,两者都应该签名,因此调试版本在当前情况下不起作用。
答案 0 :(得分:2)
是的,可以为一个项目使用不同的Firebase数据库。 不要添加SHA1密钥。如错误'你可以省略SHA1'
中所述在任何一个firebase项目中,转到身份验证 - >登录方法 - > GOOGLE,点击编辑选项,它会打开一个视图,如下图所示
展开“白名单客户端ID *”点击添加,添加其他firebase项目的客户端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应该是辅助数据库。这些可以在这里找到设置 - >项目设置 - >常规选项卡
验证辅助数据库。
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);