08-09-2015 17:17
08-09-2015 17:17
I would like to know if there is any good reference you would recommend in order for me to use pythong's oauth2 library to access fitbit data. I have the access token, so all I need to do is to use them and retrieve data from the fitbit. Any recommendation would be apprecaited. Thanks!
Best Answer08-10-2015 12:22
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.
08-10-2015 12:22
Hi @chanhyeonism,
I can't help with the pythong library, but maybe this will get you in the right direction.
Once you have an OAuth 2.0 access token, you probably don't need use a dedicated OAuth 2.0 library. In your HTTP client, add an Authorization header with token type of "Bearer" and the access token. See https://dev.fitbit.com/docs/oauth2/#making-requests
Best Answer