是否可以使用Magento Soap API V2链接到现有产品图像?

时间:2012-05-17 14:34:51

标签: image api magento soap

我正在使用Magento提供课程注册。我正在使用SOAP API V2来克隆'上新课程。

我想重新使用现有的类图像,因为重新上传相同图像数百次似乎很愚蠢。

是否可以通过API V2链接到现有图像?

catalogProductAttributeMediaCreate ()似乎并不想尝试我的尝试方式。 catalogProductAttributeMediaUpdate ()也不起作用,因为尚未为该产品创建图像。

1 个答案:

答案 0 :(得分:2)

试试这个。

$proxy = new SoapClient('http://magentohost/api/v2_soap/?wsdl'); // TODO : change url
$sessionId = $proxy->login('apiUser', 'apiKey'); // TODO : change login and pwd if necessary

$result = $proxy->catalogProductAttributeMediaInfo($sessionId, '2', '/b/l/blackberry8100_2.jpg');
var_dump($result);

回应:

array
  'file' => string '/b/l/blackberry8100_2.jpg' (length=25)
  'label' => string '' (length=0)
  'position' => string '1' (length=1)
  'exclude' => string '0' (length=1)
  'url' => string 'http://magentohost/media/catalog/product/b/l/blackberry8100_2.jpg' (length=71)
  'types' =>
    array
      0 => string 'image' (length=5)
      1 => string 'small_image' (length=11)
      2 => string 'thumbnail' (length=9)