Configuration
Before you're able to use Doorkeeper, you need to configure how resource owners (users) can be authenticated and who can manage such applications.
This configuration should do two things:
- 1.Return the user is currently authenticated
- 2.Redirect the user to the authentication page
config/initializers/doorkeeper.rb
Doorkeeper.configure do
resource_owner_authenticator do
current_user || warden.authenticate!(scope: :user)
end
end
The block above runs in the context of your application so you have access to your models, session and routes helpers. However, it is not run in the context of the
ApplicationController
which means that it doesn't have access to the methods defined over there.By default, the applications list in
/oauth/applications
is unavailable. To let users see and manage all applications, you should configure admin_authenticator
block:config/initializers/doorkeeper.rb
Doorkeeper.configure do
admin_authenticator do |_routes|
current_user || warden.authenticate!(scope: :user)
end
end
The block follows the same rules as
resource_owner_authenticator
block.Note: the application list is just a scaffold. It's highly recommended to either customize the controller used by the list or skip the controller all together. For more information see the page in the wiki.
Last modified 3yr ago