OmniAuth Tumblr2
This gem is an OmniAuth 1.0 Strategy for authenticating with the Tumblr API V2
Usage
Register your application with Tumblr. Important: you must
specify a default callback URL, or Tumblr will throw 400 Bad Request errors despite
the ?oauth_callback
param. Any URL is fine.
Get started by adding the Tumblr strategy to your Gemfile
:
gem 'omniauth-tumblr2'
Then add the Tumblr strategy to your Rack middleware:
use OmniAuth::Builder do
provider :tumblr2, ENV['TUMBLR_KEY'], ENV['TUMBLR_SECRET']
end
In Rails, create a file like @config/initializers/omniauth.com@:
Rails.application.config.middleware.use OmniAuth::Builder do
provider :tumblr2, ENV['TUMBLR_KEY'], ENV['TUMBLR_SECRET']
end
License
Copyright (c) 2011 Aubrey Holland
This source code released under an MIT license.