Jump to top

UpdateProfile

interface

Request used to update user profile information.

Example
const update = {
  displayName: 'Alias',
  photoURL: 'https://my-cdn.com/assets/user/123.png',
};

await firebase.auth().currentUser.updateProfile(update);

Properties

displayName

</>

An optional display name for the user.

displayName: undefined | string;

photoURL

</>

An optional photo URL for the user.

photoURL: undefined | string;