Fitbit Subscriptions

For receiving Fitbit subscription requests in a Rails (or Rack) app.

Installation

Add this line to your application's Gemfile:

gem 'fitbit_subscriptions', '0.0.1'

Usage

# in config/routes.rb
post '/fitbit/subscriptions', to: FitbitSubscriptions::Rack.new(
  subscriber_id, consumer_secret
)

# in an initialiser:
ActiveSupport::Notifications.subscribe('notification.fitbit') do |*args|
  event = ActiveSupport::Notifications::Event.new *args
  # use event.payload[:json] however you like.
end

Contributing

  1. Fork it ( https://github.com/[my-github-username]/fitbit_subscriptions/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Licence

Copyright (c) 2014, Fitbit Subscriptions is developed and maintained by Inspire9, and is released under the open MIT Licence.