UserInfo interface

使用者個人資料,僅供 Firebase 專案的應用程式查看。

簽名:

export interface UserInfo 

屬性

屬性 類型 說明
「displayName」 字串 |空值 使用者的顯示名稱。
email 字串 |空值 使用者的電子郵件地址。
電話號碼 字串 |空值 根據 E.164 標準 (例如 +16505550101) 使用者的電話號碼正規化。
photoURL 字串 |空值 使用者的個人資料相片網址。
providerId 字串 用於驗證使用者的供應商。
uid 字串 使用者的專屬 ID,範圍限定為專案。

使用者資訊.displayName

使用者的顯示名稱。

簽名:

readonly displayName: string | null;

使用者資訊.電子郵件地址

使用者的電子郵件地址。

簽名:

readonly email: string | null;

使用者資訊.電話號碼

根據 E.164 標準 (例如 +16505550101) 使用者的電話號碼正規化。

如果使用者沒有連結到帳戶的電話憑證,則此值為 null。

簽名:

readonly phoneNumber: string | null;

使用者資訊.photoURL

使用者的個人資料相片網址。

簽名:

readonly photoURL: string | null;

使用者資訊.providerId

用於驗證使用者的供應商。

簽名:

readonly providerId: string;

使用者資訊.uid

使用者的專屬 ID,範圍限定為專案。

簽名:

readonly uid: string;