I'm looking for a Firebase Java client that allows custom auth.
So I read the documentation and had a look at this answer but I'm still not sure if there is a plain java client for Firebase 3 that allows custom auth with a token.
As I understand it:
- The Java library is supposed to be firebase-server-sdk, which does not have any of the methods in FirebaseAuth that are in the Android SDK like signInWithCustomToken.
- The Android SDK is Android only and not even on maven central and appears to have dependencies on Google's Play Services.
- From here I took that it is possible to set an uuid for the Java SDK client, but I would still need the service account credentials, this does not work with just a token.
So if I have a plain Java Application that is supposed to be a simple custom auth token based Firebase client I have no library at the moment?