UserProvider interface

表示可以与 Firebase 用户关联的用户身份提供商。

签名:

export interface UserProvider 

特性

财产类型描述
显示名称细绳链接提供商的显示名称。
电子邮件细绳链接提供商的电子邮件。
电话号码细绳链接提供商的电话号码。
照片网址细绳链接提供商的照片 URL。
提供者ID细绳链接的提供商 ID(例如,Google 提供商的“google.com”)。
uid细绳链接提供商的用户标识符。

UserProvider.显示名称

链接提供商的显示名称。

签名:

displayName?: string;

用户提供者.email

链接提供商的电子邮件。

签名:

email?: string;

UserProvider.phoneNumber

链接提供商的电话号码。

签名:

phoneNumber?: string;

UserProvider.photoURL

链接提供商的照片 URL。

签名:

photoURL?: string;

UserProvider.providerId

链接的提供商 ID(例如,Google 提供商的“google.com”)。

签名:

providerId?: string;

UserProvider.uid

链接提供商的用户标识符。

签名:

uid?: string;