fitbit.py
fitbit.py copied to clipboard
FitBit Python Library
Hi jplattel, great work on this API. It was very helpful for me to get inside the FitBit api. Unfortunately newer information like heartrate `/1/user/-/activities/heart/date/today/1d.json` is unavailable with the OAuth...
Hi, The latest update requires an 'oauth_verifier' paramater but the example you have left in the readme does not demonstrate how to use this - Can you please update the...
i use this file in a flask app. code like below: ``` @app.route("/oauth/fitbit") def test(): from fitbit import FitBit c=FitBit() if "oauth_token" not in request.args: url,oauth_token = c.GetRequestToken() return redirect(url)...