Mary Rogers
Mary Rogers

Reputation: 262

Where is Firebase authentication API listed and documented?

From the website, https://firebase.google.com/docs/auth/

I can piece together some functions, but is there a comprehensive list of all functions, with documentation?

Using Node.js from firebase cloud functions

Thanks!

Upvotes: 0

Views: 21

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 598740

If you're accessing Firebase Auth from a Cloud Function, you're likely using the Firebase Admin SDK. The guide for that specific combination is here: https://firebase.google.com/docs/auth/admin/

You can find a list of all Auth-related methods in the Node.js Admin SDK here: https://firebase.google.com/docs/reference/admin/node/admin.auth

Upvotes: 1

Related Questions