OmniAuth::ColorMeShop
OmniAuth strategy for ColorMeShop API.
Usage
With Rails, set your client_id and client_secret in config/initializers/omniauth.rb as below:
Rails.application.config.middleware.use OmniAuth::Builder do
provider :colormeshop, ENV['COLORMESHOP_CLIENT_ID'], ENV['COLORMESHOP_CLIENT_SECRET']
endScopes
You can set scopes with scope option as below:
Rails.application.config.middleware.use OmniAuth::Builder do
provider :colormeshop, ENV['COLORMESHOP_CLIENT_ID'], ENV['COLORMESHOP_CLIENT_SECRET'], {
scope: 'read_products write_products read_sales write_sales',
}
endInstallation
Add this line to your application's Gemfile:
gem 'omniauth-colormeshop'
And then execute:
$ bundle
Or install it yourself as:
$ gem install omniauth-colormeshop
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request