Repository is archived
No commit activity in last 3 years
No release in over 3 years
Simple wrapper gem for Amazon MWS(Marketplace Web Service) API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
>= 0
>= 0

Runtime

>= 0.0.2
 Project Readme

MarketplaceWebService

Gem Version Build Status Coverage Status

MarketplaceWebService is a wrapper gem for Amazon Marketplace Web Service(MWS) API.

Features

  • Build request path form arguments
    • Set default values(API Version, Signature Version, Signature Method, Timestapm, etc...)
    • Expand arrays
    • Escape unsafe characters
    • Make signature and add it to query string
    • Combine request path and query string
  • Provide default HTTP headers
    • Content-Type
    • Content-MD5
    • User-Agent

More detail is available in Amazon MWS Developer Guide

This gem does NOT provides features below.

  • Throttling
  • Build body XML

API Sections

  • ✅ Feeds (2009-01-01)
  • ✅ Reports (2009-01-01)
  • ☑️ Orders
  • ☑️ Products
  • ☑️ Recommendations
  • ☑️ Sellers
  • ☑️ Subscriptions

Installation

Add this line to your application's Gemfile:

gem 'marketplace_web_service'

And then execute:

$ bundle

Or install it yourself as:

$ gem install marketplace_web_service

Examples

Feeds

args = {
  key: "YOUR_SECRET_KEY",
  endpoint: "mws.amazonservices.jp",
  params: {
    "AWSAccessKeyId" => "YOUR_ACCESS_KEY_ID",
    "SellerId" => "YOUR_SELLER_ID",
    "FeedType" => "_POST_PRODUCT_PRICING_DATA_"
  },
  body: xml_string,
  headers:  { 'Contet-Type' => "text/xml; charset=iso8859-1" }
}

MWS::Feed.submit_feed(args) #=> Response XML String

Reports

args = {
  key: "YOUR_SECRET_KEY",
  endpoint: "mws.amazonservices.jp",
  params: {
    "AWSAccessKeyId" => "YOUR_ACCESS_KEY_ID",
    "SellerId" => "YOUR_SELLER_ID",
    "ReportTypeList" => ["_GET_FLAT_FILE_ORDERS_DATA_"],
    "Acknowledged" => false,
    "MaxCount" => 100
  }
}

MWS::Report.get_report_list(args) #=> Response XML String

Contributing

  1. Fork it ( https://github.com/[my-github-username]/marketplace_web_service/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request