fitbit.py icon indicating copy to clipboard operation
fitbit.py copied to clipboard

FitBit Python Library

Results 3 fitbit.py issues
Sort by recently updated
recently updated
newest added

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)...