am building a desktop application that I want to use the intuitive firebase API for live data syncs. I have been searching the web but no one points out what Jars to use and how to configure with your firebase application. If you can assist please give me steps. I am good at following steps. I want to create a helper class for all firebase operations.
相关问题
- adding sha1 in firebase app fails with error
- firebase storage cors strange Behaviour
- Firebase security rules difference between get() a
- LoginActivty with Firebase & Facebook authenticati
- How to add working directory to deployment in GitH
相关文章
- How can make folder with Firebase Cloud Functions
- Firestore Update a document field Using Rest API
- How to convert a FCM token to APNS token?
- Low quality icon in taskbar of a Stage. JavaFX
- Loading custom font using JavaFX 8 and css
- App not showing Notification receiving FCM when th
- Android Studio - Get Firebase token from GetIdToke
- How to combine Firestore orderBy desc with startAf
It is risky to use the admin SDK on a client machine because it has admin rights to your database. I have developed a work around by creating a WebEngine that will read a html file that has no body just the firebase web scripts.
and to retrieve it in java
There is a better way for the javascript to call the java side of things, I just did it that way to have a fast answer. I have tested this and it works.
You can use the REST Api for accessing database as well as authentication. Check out this answer: https://stackoverflow.com/a/37419212/5287436
Follow the steps from https://firebase.google.com/docs/server/setup
Which can be broken down into:
I think the problem is that it is easy to overlook some of the steps on the website. Just follow them step by step and read carefully what steps are listed.