Transfer registered users from one firebase app to another

后端 未结 3 1656
逝去的感伤
逝去的感伤 2021-02-04 02:56

My firebase app has a list of registered users. These were created with Email & Password Authentication.

I want to transfer the firebase data and the list of users t

3条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-04 03:41

    The answer above doesn't work by it self as all the passwords from the previous project will have different password hashes. You need to specify the old hash (exporting project) when you import the new users.

    Click on this menu item and all of the settings you need for doing the firebase auth:import command will show up. Here's what I see:

    hash_config {
      algorithm: SCRYPT,
      base64_signer_key: ,
      base64_salt_separator: ,
      rounds: 8,
      mem_cost: 14,
    }
    

    I can then do the command successfully

    firebase auth:import ./users.json --hash-algo=scrypt --rounds=8 --mem-cost=14 --hash-key= --salt-separator=
    

    How to set hash-key option for auth:import after default auth:export in firebase?

提交回复
热议问题