README.rdoc 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. = Shopify API
  2. The Shopify API gem allows Ruby developers to programmatically access the admin section of Shopify stores.
  3. 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.
  4. == Usage
  5. === Requirements
  6. All API usage happens through Shopify applications, created by either shop owners for their own shops, or by Shopify Partners for use by shop owners:
  7. * Shop owners can create applications for themselves through their own admin (under the Preferences > Applications tab).
  8. * Shopify Partners create applications through their admin.
  9. For more information and detailed documentation visit http://api.shopify.com
  10. === Getting Started
  11. 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:
  12. # First create a new application to either the partners admin or your store admin and note your API_KEY and SHARED_SECRET.
  13. # You will need to supply there two parameters to the Session class before you instantiate it like this:
  14. ShopifyAPI::Session.setup({:api_key => API_KEY, :secret => SHARED_SECRET})
  15. # Create a new Session for a specific shop:
  16. session = ShopifyAPI::Session.new("yourshopname.myshopify.com")
  17. # 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:
  18. url = session.create_permission_url
  19. # 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.
  20. token = params[:t]
  21. session = ShopifyAPI::Session.new("yourshopname.myshopify.com", token)
  22. # Now you can finally get the fully authorized URL for that shop. Use that URL to configure ActiveResource and you're set:
  23. ActiveResource::Base.site = session.site
  24. # Get data from that shop (returns ActiveResource instances):
  25. shop = ShopifyAPI::Shop.current
  26. latest_orders = ShopifyAPI::Order.find(:all)
  27. == Copyright
  28. Copyright (c) 2009 "JadedPixel inc.". See LICENSE for details.