Giter VIP home page Giter VIP logo

shopify_api's Introduction

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:

  1. First create a new application in either the partners admin or your store admin and write down your API_KEY and SHARED_SECRET.

  2. 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})
    
  3. 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
    
  4. 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
    
  5. 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
    
  6. 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
    
  7. Get data from that shop (returns ActiveResource instances):

    shop = ShopifyAPI::Shop.current
    latest_orders = ShopifyAPI::Order.find(:all)
    

Copyright © 2009 “JadedPixel inc.”. See LICENSE for details.

shopify_api's People

Contributors

soleone avatar jstorimer avatar martinciu avatar jamesmacaulay avatar jaw6 avatar

Stargazers

 avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.