Firebase UserProfileChangeRequest无效

时间:2016-11-14 12:41:46

标签: android firebase firebase-authentication

我正在尝试创建个人资料活动,用户可以更改这些个人资料图片和显示名称,我正在尝试更新用户照片或用户名,调用CompleteListener,task.isSuccessful = true但是已经完成了,为什么?

更新名称的功能:

FirebaseUser mFirebaseUser = FirebaseAuth.getInstance().getCurrentUser();
final String newName;
newName = input.getText().toString();
UserProfileChangeRequest profileUpdates = new UserProfileChangeRequest.Builder()
.setDisplayName(newName)
.build();
mFirebaseUser.updateProfile(profileUpdates)
.addOnCompleteListener(new OnCompleteListener<Void>() {
@Override
public void onComplete(@NonNull Task<Void> task) {
if (task.isSuccessful()) {
DatabaseReference mFirebaseDatabaseReference = FirebaseDatabase.getInstance().getReference().child("users");
   mFirebaseDatabaseReference.child(mFirebaseUser.getUid()).child("DisplayName").setValue(newName);
updateUI();
Toast.makeText(ProfileActivity.this, "User display name updated.", Toast.LENGTH_SHORT).show();
} else
Toast.makeText(ProfileActivity.this, "Error while updating display name.", Toast.LENGTH_SHORT).show();
}
});

当我尝试更新我刚刚上传到Firebase存储的个人资料图片时...

想法?

修改

有时用户名真的会更新,我认为更新需要10分钟以上,为什么?

2 个答案:

答案 0 :(得分:3)

我遇到过类似的问题,在用户重新进行身份验证之前,用户信息没有更新。我通过在firebase数据库中保存此信息解决了这个问题。对我来说这是有道理的,因为我希望用户能够获得有关其他用户的基本信息。

我的代码最终看起来像这样。创建或修改帐户后,我调用了“users / {uid}”端点并在那里更新了对象。从这里开始,我使用GreenRobot EventBus将我的新User对象发送给订阅者,以便在屏幕上更新。

private FirebaseUser firebaseUser;

public void createUser(String email, String password, final User user, Activity activity, final View view) {
    FirebaseAuth.getInstance().createUserWithEmailAndPassword(email, password)
        .addOnCompleteListener(activity, new OnCompleteListener<AuthResult>() {
            @Override
            public void onComplete(@NonNull Task<AuthResult> task) {
                Log.d(TAG, "createUserWithEmail:onComplete:" + task.isSuccessful());

                // If sign in fails, display a messsage to the user. If sign in successful
                // the auth state listener will be notified and logic to handle
                // signed in user can be handled in the listener
                if (!task.isSuccessful()) {
                    Snackbar.make(view, task.getException().getLocalizedMessage(), Snackbar.LENGTH_SHORT).show();
                } else {
                    firebaseUser = task.getResult().getUser();

                    UserProfileChangeRequest profileUpdates = new UserProfileChangeRequest.Builder()
                        .setDisplayName(user.displayName)
                        .build();
                    firebaseUser.updateProfile(profileUpdates);
                    updateDatabase(user);

                    EventBus.getDefault().post(new LoginEvent());
                }
            }
        });
}

public boolean updateDatabase(User user) {
    if (firebaseUser == null) {
        Log.e(TAG, "updateDatabase:no currentUser");
        return false;
    }

    return userReference.setValue(user).isSuccessful();
}

数据库观察程序的设置就是这样完成的。请注意,您需要确保在用户注销时删除侦听器,并在用户登录时添加新侦听器。

protected void setupDatabaseWatcher() {
    String uid = firebaseUser.getUid();

    userReference = FirebaseDatabase.getInstance().getReference("users/" + uid);
    userReference.addValueEventListener(new ValueEventListener() {
        @Override
        public void onDataChange(DataSnapshot dataSnapshot) {
            // This method is called once with the initial value and again
            // whenever data at this location is updated.
            User user = dataSnapshot.getValue(User.class);
            Log.d(TAG, "Value is: " + user);

            EventBus.getDefault().post(new UserUpdateEvent(user));
        }

        @Override
        public void onCancelled(DatabaseError error) {
            // Failed to read value
            Log.w(TAG, "Failed to read value.", error.toException());
        }
    });
}

答案 1 :(得分:0)

使用以下简单代码:

UserProfileChangeRequest profileUpdates = new UserProfileChangeRequest.Builder()
    .setDisplayName(newName)
    .build();