代码之家  ›  专栏  ›  技术社区  ›  creativecreatorormaybenot

将匿名帐户转换为电话号码帐户

  •  0
  • creativecreatorormaybenot  · 技术社区  · 6 年前

    在看 Firebase Authentication documentation 看起来像 只能将匿名帐户链接到 任何一个 电子邮件,谷歌或Facebook,但没有具体的声明,关于这个问题。

    因为我在API中找不到任何允许转换为电话号码帐户的清晰方法,所以我想知道是否有可能实现这一点。

    1 回复  |  直到 6 年前
        1
  •  0
  •   puf - Frank van Puffelen    6 年前

    documentation you linked ,您将使用 credential(withVerificationID: verificationCode:)

    guard let authentication = user.authentication else { return }
    let credential = PhoneAuthProvider.credential(withVerificationID: authentication.idToken,
                                                  verificationCode: verificationCode)