You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the current approach -- with daily ingestion of data from the previous day -- data may be missed if the data has not been synced to the fitbit backend when the processes pull the data. One problem is that in general, the data may be missing
because it does not exist, for example, if the battery has died no data would be generated.
or the data may have been generated, but until the mobile phone app syncs the data, it won't show up on the backend web apis.
Similarly, if data is ingested multiple times, does the data get overwritten, or appended only?
The text was updated successfully, but these errors were encountered:
the ingestion routes do offer options for specifying date and user parameters. if data is specified, the data from date is ingested instead of yesterday. likewise, if user is specified, then only that user's data is pulled. for example:
http://<data connector url>/fitbit_activity_scope&[email protected]&date=2022-09-01 would only pull data for that one user for that one day. the format for the date is: yyyy-MM-dd.
by default the urls are only reachable with auth headers, and should not be publicly accessible. but you can hit that url from the commandline like this:
With the current approach -- with daily ingestion of data from the previous day -- data may be missed if the data has not been synced to the fitbit backend when the processes pull the data. One problem is that in general, the data may be missing
Similarly, if data is ingested multiple times, does the data get overwritten, or appended only?
The text was updated successfully, but these errors were encountered: