07-30-2019 01:00
07-30-2019 01:00
Hi,
I made sideload app for collecting accelerometer data and body presence data.
I already checked saved in '/private/data/' folder after executing my app through javascript function.
but, I want to extract saved data from device.
I didn't found saved file in Web API.
How can I access data??
07-30-2019 01:39
07-30-2019 01:39
File transfer to companion, then fetch() or WebSocket to a server.
07-30-2019 01:46
07-30-2019 01:46
Thank you for your reply:)
I already tried to transfer data to companion.
But, I want to find a way to extract data from the device without going through the companion.
If I go through a companion, I think I need to consider other issues, such as companion (phone) battery issues, in constantly collecting data.
I want to extract saved data directly.
Have you ever tried this method?
07-30-2019 01:49
07-30-2019 01:49
I'm pretty sure it's impossible.
07-30-2019 01:57
07-30-2019 01:57
Thank you for your reply
So, If I want to extract the data stored in the device, is there a way to upload it to a companion or web server?
Previously, when I sent data to my companion via the messenger API(socket), I did not know clearly the directory where the data was sent.
If so, where is the data sent to the companion via socket communications stored?
07-30-2019 02:04
07-30-2019 02:04
It's not stored anywhere accessible. That's why you have to send it to a server.
07-30-2019 02:10
07-30-2019 02:10
Thank you for your reply!
If so, it will eventually be able to access the data stored in the device or the data sent to the companion or the web server!