08-29-2016 21:23
08-29-2016 21:23
Urgent need help for retrieving activity 15min data with new oauth 2.0 before September 15th.
I need to implement data synchronization for activity 15min data with oauth 2.0 for all users who are using our application that links with fitbit.
Please show me how to implement with authorization code type app.
Answered! Go to the Best Answer.
09-06-2016 10:53
09-06-2016 10:53
@reno13: Has the device synced with Fitbit's servers? Make a request to the Get Devices endpoint and look at the lastSyncTime.
09-05-2016 12:35
09-05-2016 12:35
The Get Intraday Times Series endpoints provide second-level or minute-level data.
You should follow the instructions for obtaining consent using OAuth 2.0 for using the authorization code flow.
09-05-2016 18:21 - edited 09-05-2016 20:31
09-05-2016 18:21 - edited 09-05-2016 20:31
curl -i -H "Authorization: Bearer [access_token]" https://api.fitbit.com/1/user/-/activities/steps/date/today/1m.json
and receive json data
{"activities-steps":[
。。。
{"dateTime":"2016-08-29","value":"0"},
{"dateTime":"2016-08-30","value":"0"},
{"dateTime":"2016-08-31","value":"0"},
{"dateTime":"2016-09-01","value":"0"},
{"dateTime":"2016-09-02","value":"0"},
{"dateTime":"2016-09-03","value":"0"},
{"dateTime":"2016-09-04","value":"0"},
{"dateTime":"2016-09-05","value":"0"},
{"dateTime":"2016-09-06","value":"0"}]
but infact the data shown on device
8/28:9732steps
8/29:11778steps
8/30:10315steps(current_time capture)
I sent you PM for detail private fitbit data.
09-06-2016 10:53
09-06-2016 10:53
@reno13: Has the device synced with Fitbit's servers? Make a request to the Get Devices endpoint and look at the lastSyncTime.
10-18-2016 00:47
10-18-2016 00:47
Actually all issues have been solved.
Its about the migration problem.
Thanks for your supports.