Strategy for authenticating to Shopify API using OmniAuth.
Add this line to your application's Gemfile:
gem 'omniauth-shopify'
First, you will need to register an application with Shopify and obtain an API key. Once you do that, you can use it like so:
use OmniAuth::Builder do
provider :shopify, 'api_key', 'shared_secret'
end
The following information is provided back to you for this provider:
{
uid: 'some-store',
info: {
name: 'some-store',
urls: { site: 'https://some-store.myshopify.com/admin' }
},
credentials: { # basic auth
username: 'api_key',
password: 'password'
}
}
examples/ directory contains few simple sinatra apps:
- auth_hash.rb - displays auth hash schema
- api_consumer.rb - consuming api with httparty
So, make sure you have sinatra and httparty gems and run it as follow:
SHOPIFY_KEY="apikey" SHOPIFY_SECRET="secret" ruby auth_hash.rb
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request