No commit activity in last 3 years
No release in over 3 years
Delegates OAuth authentication to other authentication server
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Rack::OauthProxy Build Status Code Climate Code Climate

Delegates OAuth authentication to other authentication server.

Usage

For Rails example:

class BlogsController < ApplicationController
  use Rack::OauthProxy, url: "http://auth.example.com/oauth/token"

  before_action :require_authorization

  def show
    ...
  end

  private

  def require_authorization
    raise UnauthorizedError unless has_authorization?
  end

  # env["rack-oauth_proxy.response"] is a Faraday::Response object.
  def has_authorization?
    env["rack-oauth_proxy.response"].status == 200
  end
end