Cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

API transfer recommendation

ANSWERED

 

Can anyone reccomend a architectecture/process flow to importing data from the Fitbit API  to a database service on Amazon Webservices?

 

 

Mike

Best Answer
0 Votes
1 BEST ANSWER

Accepted Solutions

You will need to do this yourself using an application process that connects to FitBit and downloads the information using timeseries settings. You can find this information through the dev portal in the API browser. Whilst it uses oauth1, it works exactly the same for oauth2 (they're just different authentication protocols/frameworks).

 

The process is:

  1. Authorize the application
  2. Download the devices
  3. Download the profile data you want using timeseries

All responses are JSON and some will be large, so may take several seconds to download and process.

View best answer in original post

Best Answer
1 REPLY 1

You will need to do this yourself using an application process that connects to FitBit and downloads the information using timeseries settings. You can find this information through the dev portal in the API browser. Whilst it uses oauth1, it works exactly the same for oauth2 (they're just different authentication protocols/frameworks).

 

The process is:

  1. Authorize the application
  2. Download the devices
  3. Download the profile data you want using timeseries

All responses are JSON and some will be large, so may take several seconds to download and process.

Best Answer