CARVIEW |
Every repository with this icon (

Every repository with this icon (

Description: | ShopifyAPI is a lightweight gem for accessing the Shopify admin REST web services. edit |
Homepage: | https://api.shopify.com edit |
Public Clone URL: |
git://github.com/Shopify/shopify_api.git
Give this clone URL to anyone.
git clone git://github.com/Shopify/shopify_api.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:Shopify/shopify_api.git
|
name | age | message | |
---|---|---|---|
![]() |
.document | Fri Jun 12 08:40:23 -0700 2009 | Initial commit to shopify_api. [Dennis Theisen] |
![]() |
.gitignore | Fri Jun 12 08:40:23 -0700 2009 | Initial commit to shopify_api. [Dennis Theisen] |
![]() |
CHANGELOG | Fri Nov 27 16:00:12 -0800 2009 | Added Metafields class to API [juliehache] |
![]() |
LICENSE | Fri Jun 12 09:01:40 -0700 2009 | Updated README and added most recent shopify_ap... [Dennis Theisen] |
![]() |
README.rdoc | Tue Jun 16 13:47:00 -0700 2009 | Updated README: added Partners link. [Dennis Theisen] |
![]() |
Rakefile | Mon Jun 15 15:31:05 -0700 2009 | Updated gemspec so that it uses the correct rub... [Dennis Theisen] |
![]() |
VERSION | Mon Nov 30 08:36:22 -0800 2009 | Version bump to 1.0.1 [juliehache] |
![]() |
lib/ | Mon Nov 30 08:57:39 -0800 2009 | Raise error when shop url is blank (fixed test) [juliehache] |
![]() |
shopify_api.gemspec | Mon Jun 15 15:31:05 -0700 2009 | Updated gemspec so that it uses the correct rub... [Dennis Theisen] |
![]() |
test/ | Tue Oct 06 13:52:17 -0700 2009 | add NoteAttribute class and tests with usage [codyfauser] |
Shopify API
The Shopify API gem allows Ruby developers to programmatically access the admin section of Shopify stores.
The API is implemented as XML over HTTP using all four verbs (GET/POST/PUT/DELETE). Each resource, like Order, Product, or Collection, has its own URL and is manipulated in isolation. In other words, we’ve tried to make the API follow the REST principles as much as possible.
Usage
Requirements
All API usage happens through Shopify applications, created by either shop owners for their own shops, or by Shopify Partners for use by other shop owners:
- Shop owners can create applications for themselves through their own admin (under the Preferences > Applications tab).
- Shopify Partners create applications through their admin: app.shopify.com/services/partners
For more information and detailed documentation about the API visit api.shopify.com
Getting Started
ShopifyAPI uses ActiveResource to communicate with the REST web service. ActiveResource has to be configured with a fully authorized URL of a particular store first. To obtain that URL you can follow these steps:
- First create a new application in either the partners admin or your store admin and write down your API_KEY and SHARED_SECRET.
- You will need to supply two parameters to the Session class before you
instantiate it:
ShopifyAPI::Session.setup({:api_key => API_KEY, :secret => SHARED_SECRET})
- Create a new Session for a specific shop. That session is not fully valid
yet, but it can be used to create a URL that you will redirect your users
to:
session = ShopifyAPI::Session.new("yourshopname.myshopify.com") session.valid? # returns false
- To access the API shop owners need a "token" from that specific
shop. In order to get this token they need to authorize with that shop
first. The URL to redirect your user to can be generated via:
url = session.create_permission_url
- After visiting this URL, the shop redirects the owner to a custom URL of
your application where the "token" gets sent to (it’s param
name is just "t"). Use that token to instantiate a
"valid" session, that is ready to make calls to that particular
shop.
token = params[:t] session = ShopifyAPI::Session.new("yourshopname.myshopify.com", token) session.valid? # returns true
- Now you can finally get the fully authorized URL for that shop. Use that
URL to configure ActiveResource and you’re set:
ActiveResource::Base.site = session.site
- Get data from that shop (returns ActiveResource instances):
shop = ShopifyAPI::Shop.current latest_orders = ShopifyAPI::Order.find(:all)
Copyright
Copyright © 2009 "JadedPixel inc.". See LICENSE for details.