代码之家  ›  专栏  ›  技术社区  ›  Brett DeWoody

Firebase身份验证-将用户导入为禁用状态

  •  0
  • Brett DeWoody  · 技术社区  · 6 年前

    'import users without passwords' 使用Google作为OAuth提供者导入用户的过程。

    是否有一种方法可以在使用导入时将用户设置为禁用 admin.auth().importUsers ?

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

    disabled: true 导入的用户应该可以工作,但是文档对此很安静。

    如果这不起作用,最接近的就是 disable the users through the Admin SDK

    admin.auth().updateUser(uid, {
      disabled: true
    })