Delete all users from firebase auth console

后端 未结 16 1705
臣服心动
臣服心动 2020-12-04 11:53

Is there an easy way to delete all registered users from firebase console? For example, I created a hundred users from my development environment, and now I want to delete a

16条回答
  •  醉话见心
    2020-12-04 12:35

    Because I'm pretty lazy at clicking buttons and elements in the UI, I set up a small client script:

    $('[aria-label="Delete account"]').click()
    setTimeout(function () {
       $(".md-raised:contains(Delete)").click()
    }, 1000);
    

    You may need to run it multiple times, but it is much better than wasting the time clicking things on the screen manually.

提交回复
热议问题