I am using angularFire in its latest version 2.0.1, but I see information on how to update information as \"displayName\" try to obtain user information wit
I found a solution for this problem. You can do the following:
var user = firebase.auth().currentUser; user.updateProfile({ displayName: vm.form.username }).then(function(response) { //Success }, function(error) { //Error console.log(error); });