【发布时间】:2011-06-11 12:44:54
【问题描述】:
我正在尝试使用 Magento 的 Web 服务 API 通过第三方应用程序在我的商店中展示产品。当我使用“catalog_product_attribute_media.list”查询某个项目的图像数据时,我得到如下信息:
Array
(
[0] => Array
(
[file] => /a/k/akio-dresser.jpg
[label] =>
[position] => 1
[exclude] => 1
[url] => http://example.com/magento/media/catalog/product/a/k/akio-dresser.jpg
[types] => Array
(
[0] => thumbnail
[1] => small_image
[2] => image
)
)
)
这告诉我,我应该能够获得此图像的“缩略图”或“小图像”版本,但我不知道如何实际做到这一点。我查看了文档并尝试了我能找到的所有内容,但没有成功。有人知道我可以使用什么 SOAP 调用吗?调用 catalog_product_attribute_media.info 似乎返回完全相同的信息,而 catalog_product_attribute_media.types 似乎根本没有返回任何内容。
【问题讨论】:
标签: soap magento-1.4 soap-client magento