如何使用 magento api 创建可配置产品?

发布于 2024-11-03 03:42:15 字数 32 浏览 1 评论 0原文

如何使用 Magento api 创建可配置产品?

How can I create a configurable product using the Magento api?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

差↓一点笑了 2024-11-10 03:42:15

您关于使用 API 创建可配置产品的问题 - 答案是:您不能。它不支持它(至少目前还不支持。)

Your question of creating a configurable product using the API - the answer is: You can't. It doesn't support it (yet at least.)

雪花飘飘的天空 2024-11-10 03:42:15

这可以通过 magento-improve-api 实现插件。如果您需要控制可配置产品的可配置属性,则需要该插件的分支之一

This is possible with the magento-improve-api plugin. If you need to control which attributes your configurable product is configurable across, you'll need one of the forks of that plugin in

你怎么这么可爱啊 2024-11-10 03:42:15

这里是一个非常好的教程,可引导您完成对 API 的修补,以便您可以直接使用 API创建可配置产品,并为其分配简单产品。

祝你好运

Here's a really good tutorial that walks you through patching the API, so you can use the API directly to create the configurable product, and assign simple products to it as well.

Good luck

那片花海 2024-11-10 03:42:15

http://www.magentocommerce.com 复制/粘贴/wiki/doc/webservices-api/api/catalog_product#example_2._product_createviewupdatedelete

$proxy = new SoapClient('http://magentohost/api/soap/?wsdl');
$sessionId = $proxy->login('apiUser', 'apiKey');

// default attribute set in my install is 4
$attribute_set_id = 4;

// configurable product to create
$product_sku = 123456789012;

$newProductData = array(
   'name'              => 'name of product',
   // websites - Array of website ids to which you want to assign a new product
  'websites'          => array(1), // array(1,2,3,...)
  'short_description' => 'short description',
  'description'       => 'description',
  'price'             => 12.05
);

$proxy->call($sessionId, 'product.create', array(
  'configurable', 
  $attribute_set_id, 
  $product_sku, 
  $newProductData
));

困难的部分是将简单的产品分配给您的可配置(不支持通过 API)。这是直接将简单分配给可配置的方法

Copy/pasted from http://www.magentocommerce.com/wiki/doc/webservices-api/api/catalog_product#example_2._product_createviewupdatedelete

$proxy = new SoapClient('http://magentohost/api/soap/?wsdl');
$sessionId = $proxy->login('apiUser', 'apiKey');

// default attribute set in my install is 4
$attribute_set_id = 4;

// configurable product to create
$product_sku = 123456789012;

$newProductData = array(
   'name'              => 'name of product',
   // websites - Array of website ids to which you want to assign a new product
  'websites'          => array(1), // array(1,2,3,...)
  'short_description' => 'short description',
  'description'       => 'description',
  'price'             => 12.05
);

$proxy->call($sessionId, 'product.create', array(
  'configurable', 
  $attribute_set_id, 
  $product_sku, 
  $newProductData
));

The hard part is assigning simple products to your configurables (not supported via the api). Here's a method for assigning simples to configurables directly

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文