Skip to content

pronix/spree_amazon_api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spree <-> Amazon

Requirements

Spree >= 0.60.0

Installation

Add to Gemfile:

gem "spree_amazon_api", :git => "git@github.com:pronix/spree_amazon_api.git"

run task:

rake spree_amazon_api:install

run migrate: (add amazon_id to product table)

rake db:migrate

Root taxons define in file: db/amazon_categories.yml

Configure Amazon access:

Setting amazon options in amazon.yml file( Rails.root/config).

Configure example:

development:
  :configure:                                                   # acces options
    :aWS_access_key_id: 0XQXXC6YV2C85DX1BF02
    :aWS_secret_key: fwLOn0Y/IUXEM8Hk49o7QJV+ryOscbhXRb6CmA5l
    :response_group: 'Large'
    :country: 'us'                                                  # region
   :query:                                                      # search options
     :q: "%{q}"                                                 # %{q} replace on user keywords
     :options:
        :search_index: 'Books'
        :response_group: 'Large, Accessories'
        :sort: "salesrank"                                       # default sort

production:
  :configure:
    :aWS_access_key_id: 0XQXXC6YV2C85DX1BF02
    :aWS_secret_key: fwLOn0Y/IUXEM8Hk49o7QJV+ryOscbhXRb6CmA5l
    :response_group: 'Large'
    :country: 'us'
  :query:
    :q: "%{q}"
    :options:
      :search_index: 'Books'
      :response_group: 'Large, Accessories'
      :sort: "salesrank"

Search options

To customize the search, set search format in param :q(Rails.root/config/amazon.yml)

For instance: if you set :q with "%{q} made in Vermont" then user query "tools" will be replaced with "tools made in Vermont"

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages