Doorkeeper is a gem (Rails engine) that makes it easy to introduce OAuth 2 provider functionality to your Ruby on Rails or Grape application.
Supported features:
- The OAuth 2.0 Authorization Framework
- OAuth 2.0 Token Revocation
- OAuth 2.0 Token Introspection
- OAuth 2.0 Threat Model and Security Considerations
- OAuth 2.0 for Native Apps
- Proof Key for Code Exchange by OAuth Public Clients
- OAuth 2.0 Authorization Server Issuer Identification — opt-in by setting
issuer; adds theissparameter to authorization redirects returned to the client - Resource Indicators for OAuth 2.0
- Documentation
- Installation
- ORMs
- Extensions
- Resource Indicators
- Custom Grant Flows
- Custom Client Authentication Methods
- Example Applications
- Sponsors
- Development
- Contributing
- Contributors
- License
This documentation is valid for main branch. Please check the documentation for the version of doorkeeper you are using in:
https://github.com/doorkeeper-gem/doorkeeper/releases.
Additionally, other resources can be found on:
- Guides with how-to get started and configuration documentation
- See the Wiki for articles on how to integrate with other solutions
- Screencast from railscasts.com: #353 OAuth with Doorkeeper
- See upgrade guides
- For general questions, please post on Stack Overflow
- See SECURITY.md for this project's security disclose policy
Installation depends on the framework you're using. The first step is to add the following to your Gemfile:
gem 'doorkeeper'And run bundle install. After this, check out the guide related to the framework you're using.
Doorkeeper currently supports Ruby on Rails >= 5.0. See the guide here.
Guide for integration with Grape framework can be found here.
Doorkeeper supports Active Record by default, but can be configured to work with the following ORMs:
| ORM | Support via |
|---|---|
| Active Record | by default |
| MongoDB | doorkeeper-gem/doorkeeper-mongodb |
| Sequel | nbulaj/doorkeeper-sequel |
| Couchbase | acaprojects/doorkeeper-couchbase |
| RethinkDB | aca-labs/doorkeeper-rethinkdb |
Extensions that are not included by default and can be installed separately.
| Link | |
|---|---|
| OpenID Connect extension | doorkeeper-gem/doorkeeper-openid_connect |
| JWT Token support | doorkeeper-gem/doorkeeper-jwt |
| Assertion grant extension | doorkeeper-gem/doorkeeper-grants_assertion |
| I18n translations | doorkeeper-gem/doorkeeper-i18n |
| CIBA - Client Initiated Backchannel Authentication Flow extension | doorkeeper-ciba |
| Device Authorization Grant | doorkeeper-device_authorization_grant |
Doorkeeper supports Resource Indicators for OAuth 2.0 (RFC 8707), allowing clients to signal which protected resource(s) they intend to access. Tokens are then audience-restricted to those resources.
- Run the generator to add the required
resourcecolumn:
rails generate doorkeeper:resource_indicators
rails db:migrate- Configure a validator in your initializer:
# config/initializers/doorkeeper.rb
Doorkeeper.configure do
resource_indicator_validator ->(resource_indicators, client) {
allowed = %w[https://api.example.com/ https://calendar.example.com/]
resource_indicators.all? { |r| allowed.include?(r) }
}
endThe callable receives an array of resource URIs and the OAuth client. Return true to accept or false to reject with invalid_target.
- Resource URIs must be absolute and must not contain a fragment component.
- Resource indicators are stored on grants and tokens.
- Token and refresh requests enforce subset restrictions against the original grant.
- Token introspection responses include
audwhen resource indicators are present. - Grants issued with resource indicators retain their audience restriction even if the validator is later removed from configuration.
RFC 8707 uses repeated query parameters (?resource=…&resource=…) for multiple values, but Rack collapses repeated keys to the last value. Clients must use the Rails bracket syntax for multiple resource indicators:
?resource[]=https://api.example.com/&resource[]=https://calendar.example.com/
A single resource=… works as-is.
Besides the built-in OAuth 2 flows, Doorkeeper can recognize and process any custom grant type through its grant flow registry — including grant types whose names are URNs or URIs, such as the SAML 2.0 bearer assertion grant defined by RFC 7522.
A grant flow bundles a matcher for the grant_type parameter with a strategy class that processes the token request. Register it before Doorkeeper.configure and enable it by adding its registered name to grant_flows:
# config/initializers/doorkeeper.rb
Doorkeeper::GrantFlow.register(
:saml2_bearer,
grant_type_matches: "urn:ietf:params:oauth:grant-type:saml2-bearer",
grant_type_strategy: SamlBearer::Strategy,
)
Doorkeeper.configure do
grant_flows %w[authorization_code saml2_bearer]
# ...
endNote that grant_flows lists the registered flow name (saml2_bearer), while grant_type_matches — a String or a Regexp — is what the request's grant_type parameter is matched against.
The strategy class receives the authorization server as server and builds the request object handling the grant:
module SamlBearer
class Strategy < Doorkeeper::Request::Strategy
delegate :client, :parameters, to: :server
def request
@request ||= TokenRequest.new(Doorkeeper.config, client, parameters)
end
end
endThe request object validates the grant and issues the token. Subclassing Doorkeeper::OAuth::BaseRequest provides the response handling, scope calculation and token creation, so only the grant-specific parts remain (per RFC 7522 §2.1 the assertion parameter carries a single SAML assertion, base64url-encoded without padding):
module SamlBearer
class TokenRequest < Doorkeeper::OAuth::BaseRequest
validate :client, error: Doorkeeper::Errors::InvalidClient
validate :client_supports_grant_flow, error: Doorkeeper::Errors::UnauthorizedClient
validate :assertion, error: Doorkeeper::Errors::InvalidGrant
validate :scopes, error: Doorkeeper::Errors::InvalidScope
attr_reader :client, :parameters, :access_token
def initialize(server, client, parameters = {})
@server = server
@client = client
@parameters = parameters
@original_scopes = parameters[:scope]
@grant_type = "urn:ietf:params:oauth:grant-type:saml2-bearer"
end
private
def before_successful_response
find_or_create_access_token(client, resource_owner, scopes, {}, server)
super
end
def assertion
# Decode and verify the SAML assertion — signature, audience, validity
# window, etc. — e.g. with the ruby-saml gem. Skipping verification
# turns the endpoint into a token vending machine for anyone.
@assertion ||= decode_and_verify_saml(parameters[:assertion])
end
def resource_owner
# Map the assertion's subject to a resource owner.
@resource_owner ||= User.find_by(email: assertion.name_id)
end
def validate_client
client.present?
end
def validate_client_supports_grant_flow
Doorkeeper.config.allow_grant_flow_for_client?(grant_type, client&.application)
end
def validate_assertion
assertion.present? && resource_owner.present?
end
def validate_scopes
return true if scopes.blank?
Doorkeeper::OAuth::Helpers::ScopeChecker.valid?(
scope_str: scopes.to_s,
server_scopes: server.scopes,
app_scopes: client&.scopes,
grant_type: grant_type,
)
end
end
endThe client_supports_grant_flow validation keeps the custom grant subject to the allow_grant_flow_for_client configuration option (per-client grant restrictions), just like the built-in flows.
Flows can also handle custom response_type values on the authorization endpoint via the response_type_matches / response_type_strategy options — see the built-in registrations in lib/doorkeeper/grant_flow.rb for reference. An extension can also group several flows under one configuration name with Doorkeeper::GrantFlow.register_alias (e.g. the OpenID Connect extension registers implicit_oidc to expand to multiple response types).
Doorkeeper authenticates clients (RFC 6749 §2.3) through a registry of named methods. client_secret_basic, client_secret_post and none are built in, and an application or extension can register additional ones — for instance to keep accepting credentials that a partner integration sends in its own headers.
A method is any object that responds to matches_request? and authenticate. Register it before Doorkeeper.configure and enable it by listing its registered name in client_authentication:
# config/initializers/doorkeeper.rb
Doorkeeper::ClientAuthentication.register(
:partner_headers,
PartnerHeaders::Authentication,
)
Doorkeeper.configure do
client_authentication %i[client_secret_basic client_secret_post partner_headers none]
# ...
endThe order of client_authentication is the order the methods are tried in: the first one whose matches_request? returns true handles the request.
matches_request? decides whether the request carries this method's credentials, and authenticate extracts them into a Doorkeeper::ClientAuthentication::Credentials pair (or nil):
module PartnerHeaders
class Authentication
def self.matches_request?(request)
request.get_header("HTTP_X_CLIENT_ID").present? &&
request.get_header("HTTP_X_CLIENT_SECRET").present?
end
def self.authenticate(request)
Doorkeeper::ClientAuthentication::Credentials.new(
request.get_header("HTTP_X_CLIENT_ID"),
request.get_header("HTTP_X_CLIENT_SECRET"),
)
end
end
endTwo things are worth keeping in mind when writing one.
Keep matches_request? as narrow as possible. RFC 6749 §2.3 forbids a client from using more than one authentication method in a single request, and Doorkeeper enforces that across the whole registry rather than only the enabled methods. A method that matches too broadly therefore collides with a built-in one and the request is answered with invalid_request.
The returned credentials are resolved with by_uid_and_secret. A blank secret resolves only a public (non-confidential) client — that is what the built-in none method relies on — while a confidential client is resolved only when the secret matches the registered one. A method that establishes the client's identity by some other proof, such as a client certificate or a signed assertion, therefore still has to produce the registered secret for a confidential client.
Enabled methods are advertised in the authorization server metadata, so a registered method appears in token_endpoint_auth_methods_supported at /.well-known/oauth-authorization-server once client_authentication lists it.
These applications show how Doorkeeper works and how to integrate with it. Start with the oAuth2 server and use the clients to connect with the server.
| Application | Link |
|---|---|
| OAuth2 Server with Doorkeeper | doorkeeper-gem/doorkeeper-provider-app |
| Sinatra Client connected to Provider App | doorkeeper-gem/doorkeeper-sinatra-client |
| Devise + Omniauth Client | doorkeeper-gem/doorkeeper-devise-client |
You may want to create a client application to test the integration. Check out these client examples in our wiki or follow this tutorial here.
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]
Codecademy supports open source as part of its mission to democratize tech. Come help us build the education the world deserves: https://codecademy.com/about/careers
If you prefer not to deal with the gory details of OAuth 2, need dedicated customer support & consulting, try the cloud-based SaaS version: https://oauth.io
Wealthsimple is a financial company on a mission to help everyone achieve financial freedom by providing products and advice that are accessible and affordable. Using smart technology, Wealthsimple takes financial services that are often confusing, opaque and expensive and makes them simple, transparent, and low-cost. See what Investing on Autopilot is all about: https://www.wealthsimple.com
To run the local engine server:
bundle install
bundle exec rake doorkeeper:server
By default, it uses the latest Rails version with ActiveRecord. To run the tests with a specific Rails version:
BUNDLE_GEMFILE=gemfiles/rails_6_0.gemfile bundle exec rake
You can also experiment with the changes using bin/console. It uses in-memory SQLite database and default
Doorkeeper config, but you can reestablish connection or reconfigure the gem if you need.
Want to contribute and don't know where to start? Check out features we're missing, create example apps, integrate the gem with your app and let us know!
Also, check out our contributing guidelines page.
Thanks to all our awesome contributors!
MIT License. Created in Applicake. Maintained by the community.

