我想向FirebaseAuth用户配置文件添加额外的配置文件信息,下面是一个更新配置文件方法,我想添加额外的信息,例如:UserId,是否可以执行此操作?
val profileUpdates = UserProfileChangeRequest.Builder()
.setDisplayName(usernameEditText.text.toString())
.build()
答案 0 :(得分:1)
如果您在Firebase Auth中创建了一个用户,那么您将获得以下信息:
FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
if (user != null) {
for (UserInfo profile : user.getProviderData()) {
// Id of the provider (ex: google.com)
String providerId = profile.getProviderId();
// UID specific to the provider
String uid = profile.getUid();
// Name, email address, and profile photo Url
String name = profile.getDisplayName();
String email = profile.getEmail();
Uri photoUrl = profile.getPhotoUrl();
}
}
关于更新配置文件,您可以更新显示名称和照片网址:
FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();
UserProfileChangeRequest profileUpdates = new UserProfileChangeRequest.Builder()
.setDisplayName("Jane Q. User")
.setPhotoUri(Uri.parse("https://example.com/jane-q-user/profile.jpg"))
.build();
user.updateProfile(profileUpdates)
.addOnCompleteListener(new OnCompleteListener<Void>() {
@Override
public void onComplete(@NonNull Task<Void> task) {
if (task.isSuccessful()) {
Log.d(TAG, "User profile updated.");
}
}
});
您无法更新uid
,并且如果要添加与用户有关的更多数据,则唯一的选择是一起使用数据库和身份验证。
您可以查看文档以获取更多信息:
https://firebase.google.com/docs/auth/android/manage-users#update_a_users_profile