Skip to content

Attempt to sync up with the Nike+ FuelBand API and pull some basic data.

Notifications You must be signed in to change notification settings

fredkelly/fuel_band

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nike+ FuelBand API - Ruby client

Get an API Access Token:

  1. Log in to Nike Developer
  2. Go to API Console > Get my Access Token

Usage (for now):

  1. Rename sample_config.yml to config.yml.
  2. Paste your access token in the placeholder in the config.

Load up IRB:

	>> require 'fuel'
	=> true
	>> require 'awesome_print'
	=> true
	>> fuel = FuelBand.new
	#<FuelBand:0x007f864c68adb0 @end=2013-03-15 17:26:23 -0700, @start=2013-03-14 17:26:23 -0700>
	>> ap fuel.stats
  	{
	               "calories" => 1539,
	                  "steps" => 13514,
	               "distance" => 10.64092,
	             "activeTime" => 604,
	              "totalFuel" => 4013,
	          "avgFuelPerDay" => 4013,
	              "frequency" => "DAILY",
	              "startDate" => 1363219200000,
	           "activityType" => "ALL_DAY",
	     "lastKnownDailyGoal" => 3000.0,
	     "mostRecentTZOffset" => "-08:00",
	    "mostRecentDSTOffset" => "+01:00",
	                   "tags" => {},
	              "dailyGoal" => {
	                    "progress" => 4013.0,
	                 "targetValue" => 3000.0,
	        "dailyGoalsSuccessful" => 1,
	             "dailyGoalsTotal" => 1
    	}
	}
	=> nil
	>> ap fuel.summary
	{
		...
		<< HUGE explosion of data >>
		...
	}

About

Attempt to sync up with the Nike+ FuelBand API and pull some basic data.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages