Learn R Programming

fitbitScraper (version 0.1.2)

get_premium_export: Get official data export from fitbit.com premium

Description

Get official data export from fitbit premium using cookie returned from login function. This should be used over individual calls to get_daily_data(), etc. if you subscribe to premium and data export is allowed. I'm not subscribed to premium, but it works for me...

Usage

get_premium_export(cookie, what = "ACTIVITIES", start_date = "2015-01-13",
  end_date = "2015-01-20")

Arguments

cookie
Cookie returned after login, specifically the "u" cookie
what
What data you wish to be returned. Options include "BODY", "FOODS", "ACTIVITIES", "SLEEP"
start_date
Date in YYYY-MM-DD format
end_date
Date in YYYY-MM-DD format

Value

  • A list with two things
  • summaryA list of sleep summary values
  • dfA data frame containing various sleep values over time

Examples

Run this code
get_premium_export(cookie, what="ACTIVITIES", start_date="2015-01-13", end_date="2015-01-20")
get_premium_export

Run the code above in your browser using DataLab