Hannah Sameh
Hannah Sameh

Reputation: 21

FCM allows data storage of messages?

I'm implementing a system where I have an android smart phone that receives data values from a sensor and shall upload this data to a Cloud, where some data processing shall occur and a response is sent back to the smart phone.

I've been reading about Firebase but I'm still confused, will I be able to implement such a behavior for the Cloud through it

  1. stores received data in a database
  2. does some operations on data received
  3. responds with a customized reply I define

What I understood is I can use FCM, but does it allow me to store in a database the messages I received? and does it allow me to write a code to perform operations on the received data before sending a reply to the Smart Phone?

Upvotes: 2

Views: 1697

Answers (1)

danypata
danypata

Reputation: 10175

As far as I know, that's doable, you have two possibilities. Either integrate firebase on your Server or use firebase queue

Also in order to respond to the device, you can either send notifications or use real time database from firebase.

Upvotes: 2

Related Questions