表示可与 Firebase 用户相关联的用户身份提供方。
签名:
export interface UserProvider
属性
属性 | 类型 | 说明 |
---|---|---|
displayName | 字符串 | 关联的提供商的显示名称。 |
字符串 | 关联的提供商的电子邮件地址。 | |
phoneNumber | 字符串 | 关联的提供商的电话号码。 |
photo网址 | 字符串 | 已关联的提供方的照片网址。 |
providerId | 字符串 | 关联的提供方 ID(例如 Google 提供方的 ID 为“google.com”)。 |
uid | 字符串 | 关联的提供商的用户标识符。 |
UserProvider.displayName
关联的提供商的显示名称。
签名:
displayName?: string;
UserProvider.email
关联的提供商的电子邮件地址。
签名:
email?: string;
UserProvider.phoneNumber 类中的方法
关联的提供商的电话号码。
签名:
phoneNumber?: string;
UserProvider.photo网址
已关联的提供方的照片网址。
签名:
photoURL?: string;
UserProvider.providerId
关联的提供方 ID(例如 Google 提供方的 ID 为“google.com”)。
签名:
providerId?: string;
UserProvider.uid
关联的提供商的用户标识符。
签名:
uid?: string;