我使用Magento 1.9 SOAP API来管理我们PIM的产品。我们正在使用Magento的多店铺功能,有些产品可在多家商店使用,但图片不同。
有没有办法填充商店视图,这些视图分配给API响应中的图像?
scanf
根据the Magento 1.x SOAP API documentation的默认回复是:
也许我会去攻击catalog_product_attribute_media.list
......但我希望有更好的方法。
答案 0 :(得分:0)
如果在catalog_product_attribute_media.list
调用期间未明确指定商店代码,则结果将仅包含分配给默认商店视图的图像(当在&中未选择自定义商店视图时,在管理面板中设置的图像#34;选择商店视图"下拉列表。
要获取在特定商店视图中分配的图片,请使用storeView
的可选catalog_product_attribute_media.list
参数。因此,对于所有检索到的图像,将知道商店视图。无需破解Mage_Catalog_Model_Product_Attribute_Media_Api
。