Skip to content
Advertisement

Firebase Cloud Function listUser get 1000+ users

JavaScript

I want to modify the database value that has the uid of all users as the key after getting uid through listUser(), but listUser() has 1000 max. If there is a good way to get uid of all users, please let me know

Advertisement

Answer

The Firebase Admin SDK supports pagination to cycle through all the registered user accounts. Follow the instructions in the documentation. You will need to use the API to cycle through batches of 1000 or less. The code sample provided in the documentation illustrates this:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement