Skip to content Skip to sidebar Skip to footer

Switching Firebase Auth From Android Sdk To Firebase Admin Sdk

Currently I have an android app that uses the Firebase Auth for user Authentication. I would like to move the authentication part to the Admin Sdk server, such that The android app

Solution 1:

That's not a supported situation with Firebase Authentication. The client app must authenticate itself using the client SDK so that it can manage the ID token that lets the other SDKs work with respect to the security rules defined for those products (Realtime Database, Firestore, Storage).

You could call the Authentication APIs directly from the client, but it's far better to just let the client SDK do all that work for you.

Post a Comment for "Switching Firebase Auth From Android Sdk To Firebase Admin Sdk"