09-16-2015 22:55
09-16-2015 22:55
I've been using the Fitbit Python package to analyse my data from the Fitbit Charge HR. When I look at my exercise data it seems to work really well:
fitbit_stats = authd_client._COLLECTION_RESOURCE('activities', date='2015-09-16')
However, when I try to get my heart rate data, it runs, but doesn't return anything except 0s:
fitbit_stats = authd_client._COLLECTION_RESOURCE('heart', date='2015-09-16') print fitbit_stats
{'heart': [], 'average': [{'tracker': 'Resting Heart Rate', 'heartRate': 0}, {'tracker': 'Normal Heart Rate', 'heartRate': 0}, {'tracker': 'Exertive Heart Rate', 'heartRate': 0}]}
Does anyone know why I'm not returning any data here?
Best Answer09-17-2015 10:52
Fitbit Developers oversee the SDK and API forums. We're here to answer questions about Fitbit developer tools, assist with projects, and make sure your voice is heard by the development team.
09-17-2015 10:52
We can't easily debug your application code. Please provide a log of the actual HTTP request and response. You might consider using Runscope Traffic Inspector to do this.
Best Answer