The data on Apple watch send to firebase

959 Views Asked by At

I want to send the acceleration data which is retrieved from Apple Watch to Cloud Storage for Firebase.

However, Firebase is not support watchOS.

Should I have sent the acceleration data to the storage via iPhone?

Please teach me a better method.

1

There are 1 best solutions below

1
On

As a workaround you could send the data to the Firebase Realtime Database or Cloud Firestore using the REST Service. By implementing a Firebase node.js cloud function which triggers on Data Writes you could copy the data to Cloud Storage. Anyway for your purpose it seems to be a better solution to work with the super fast Realtime Database instead of the slow storage.