No commit activity in last 3 years
No release in over 3 years
OmniAuth strategy for Rdio OAuth2
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

omniauth-rdio-oauth2

An Omniauth Strategy for Rdio's OAuth2 API/ Beta JS API

This gem is mostly untested. Use at your own risk.

Installation

Add to your Gemfile:

gem 'omniauth-rdio-oauth2'

Then bundle install.

Usage

Here's an example for adding the middleware to a Rails app in config/initializers/omniauth.rb:

Rails.application.config.middleware.use OmniAuth::Builder do
  provider :rdio_oauth2, ENV["RDIO_CLIENT_ID"], ENV["RDIO_CLIENT_SECRET"]
end