3

Shopify 有一个 RESTful API 和一个方便的 shopify_api ruby​​ gem,我已经使用它们来更新库存水平。

今天我必须做一些新的事情,用图像创建一个新产品,我想使用 shopify_api gem 而不是使用 rest-client 或 httparty 之类的东西来与 API 交互。

Shopify API 支持同时创建具有默认变体的新产品和将由 Shopify 使用此调用下载的产品图像:

发布 /admin/products.json

使用 JSON 请求字符串:

{
  "product": {
    "title": "Burton Custom Freestlye 151",
    "body_html": "<strong>Good snowboard!</strong>",
    "vendor": "Burton",
    "product_type": "Snowboard",
    "images": [
      {
        "src": "http://example.com/rails_logo.gif"
      }
    ]
  }
}

问题是如何使用 shopify_api gem 做到这一点?

干杯,

马库斯

4

1 回答 1

16

我找到了一种不优雅的方法来做到这一点。请参阅下面的解决方案:

images = []
image = {}
image["src"] = "http://i.dailymail.co.uk/i/pix/2012/09/10/article-0-14EE3D4E000005DC-303_634x434.jpg"

images << image

variant = ShopifyAPI::Variant.new(
  :price                => 69.99,
  :inventory_management => 'shopify',
  :inventory_quantity   => 69, 
  :sku => "MS_TEST"
)

product = ShopifyAPI::Product.new(
:title => "MS Test",
:body_html =>  "<strong>Good snowboard!</strong>",
:vendor => "MS Test",
:product_type => "MS Test",
:images => images,
:variants => variant
)
于 2012-10-12T10:30:51.203 回答