OmniAuth strategy for Ecwid OAuth2
Use to retrieve an access token for use with the REST API: https://developers.ecwid.com/api-documentation#complete-oauth-flow
You must first register your application with Ecwid: https://developers.ecwid.com/api-documentation#external-applications
When you register the application, you will get an 'application ID' and 'shared secret'. These need to be provided when you configure the strategy (this example assumes the values are available in environment variables):
Rails.application.config.middleware.use OmniAuth::Builder do
provider :ecwid, ENV['APPLICATION_ID'], ENV['SHARED_SECRET']
end
Add this line to your application's Gemfile:
gem 'omniauth-ecwid'
And then execute:
$ bundle
Or install it yourself as:
$ gem install omniauth-ecwid
Expected from Ecwid (as noted in their documentation at https://developers.ecwid.com/api-documentation#complete-oauth-flow):
{
"access_token":"secret_secretihaveasecret",
"token_type":"bearer",
"scope":"read_store_profile update_catalog",
"store_id":1003,
"public_token":"public_qKDUqKkNXzcj9DejkMUqEkYLq2E6BXM9"
}
Strategy Output (auth_hash
):
{
"provider"=>"ecwid",
"uid"=>1003,
"info"=>{},
"credentials"=>{"token"=>"secret_secretihaveasecret", "expires"=>false},
"extra"=>{}
}
- Fork it ( https://github.com/ShippingEasy/omniauth-ecwid/fork )
- 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 a new Pull Request