我正在magento中使用soap api构建一个新的第三方应用程序,它能够在移动设备上销售产品。 但问题是我没有找到任何方法在添加产品列表时显示缩小尺寸的图像。 我正在使用 Catalog_product_attribute_media.list 来查找图像 url,但该 url 是完整尺寸和大图像。我无法使用soap api 找到缩略图和small_images 的url。 这是因为 magento 会自动生成它们。 我无法使用大尺寸图像,因为此应用程序要在移动网络上使用。 有谁可以告诉我如何解决这个小尺寸图像问题。 或者告诉我使用magento 的soap api 使用这些缩略图的任何方法。 如果您知道任何可以减少图像内存大小的动态图像尺寸缩小方法,请告诉我。
尝试这个模块,非常好处理图像并具有调整大小的方法,http://www.magentocommerce.com/magento-connect/cloud-zoom-4634.html
这里是来源,
允许您检索产品图像类型,包括标准图像、 小图片、缩略图等
请求 SOAP API V1:
$client = new SoapClient('http://magentohost/api/soap/?wsdl');
// If somestuff requires api authentification,
// then get a session token
$session = $client->login('apiUser', 'apiKey');
$result = $client->call($session, 'catalog_product_attribute_media.types', '4');
var_dump($result);
// If you don't need the session anymore
//$client->endSession($session);
回复:
array
0 =>
array
'code' => string 'image' (length=5)
'scope' => string 'store' (length=5)
1 =>
array
'code' => string 'small_image' (length=11)
'scope' => string 'store' (length=5)
2 =>
array
'code' => string 'thumbnail' (length=9)
'scope' => string 'store' (length=5)