UserInfo interface

用户个人资料信息,仅对 Firebase 项目的应用可见。

签名

export interface UserInfo 

属性

属性 类型 说明
displayName 字符串 |null 用户的显示名称。
email 字符串 |null 用户的电子邮件地址。
phoneNumber 字符串 |null 根据 E.164 标准为用户标准化的电话号码(例如 +16505550101)。
photo网址 字符串 |null 用户的个人资料照片网址。
providerId 字符串 用于对用户进行身份验证的提供方。
uid 字符串 用户的唯一 ID,范围为项目。

UserInfo.displayName

用户的显示名称。

签名

readonly displayName: string | null;

UserInfo.email

用户的电子邮件地址。

签名

readonly email: string | null;

电话号码

根据 E.164 标准为用户标准化的电话号码(例如 +16505550101)。

如果用户没有与账号相关联的电话凭据,则该属性为 null。

签名

readonly phoneNumber: string | null;

用户信息.photo网址

用户的个人资料照片网址。

签名

readonly photoURL: string | null;

用户信息.提供方 ID

用于对用户进行身份验证的提供方。

签名

readonly providerId: string;

UserInfo.uid

用户的唯一 ID,范围为项目。

签名

readonly uid: string;