I am not able to implement it on my project
I want that from admin panel I am able to create client Id and client secret key ruby
I am not able to implement it on my project
I want that from admin panel I am able to create client Id and client secret key ruby
Copyright © 2021 Jogjafile Inc.
You need to follow these steps:
gem 'doorkeeper', '~> 5.6', '>= 5.6.8'rails g doorkeeper:install. It will create an initializer config file.rails g doorkeeper:migration. This will create migration file for database tables. Runrails db:migrateafterwardsroutes.rbby addinguse_doorkeeperAfter these steps you should be able to use
Doorkeeper::Applicationtable. After you create a record it'll generate uid & secret columns. I can recommend this tutorial if you face any trouble.