Home > OS >  How do we sync firebase users into Big Query?
How do we sync firebase users into Big Query?

Time:06-19

We have been using the firebase extension to stream (and import) our firestore collection data in BigQuery. That works great.

I was looking for a way to do the same for the users in Firebase Authentication. Any way we can do that?

Thank you

CodePudding user response:

There is no Firebase Extension to export users to BigQuery.

But there is an API in the Admin SDKs that allows you to read all users, so if you combine that with the APIs to write data to BigQuery you can build the functionality yourself.

  • Related