Amol Chakane
Amol Chakane

Reputation: 1511

How to create java web service to write data to Firebase?

We are creating an Android app and web app using Firebase 3.0.0. Right now both these clients are writing data directly into Firebase database.

We wish to avoid this by introducing Web Services component in between. This component will write data to Firebase, and it will be consumed by Android and Web (or iOS in future) apps.

We have decided to develop web services using Java, we found Firebase JAR for JVM.

There are no Firebase tutorials to implement such a component.

Can we use this JAR for creating web services in Java? How?

Thanks

Upvotes: 4

Views: 8822

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 598797

For the new Firebase, you can use the server SDK from this documentation page: https://firebase.google.com/docs/server/setup. Then start accessing the Database by following the instructions here: https://firebase.google.com/docs/database/server/start

Upvotes: 4

Related Questions