我試圖使用Magento的API來創建一個圖像,但它與消息如何創建圖像與Magento的API
SoapFault exception: [104] Cannot create image.
這不是一個有用的錯誤消息,失敗!這是什麼意思?它爲什麼這樣做?如何使用magento api創建圖像?
這是我的代碼:
$client = new SoapClient($wsdlurl);
$sessionId = $client->login($user, $key);
$file = array(
'content' =>
base64_encode(file_get_contents($filename)),
'mime' => 'image/jpeg',
'name' => 'newfile.jpg'
);
$result = $client->call(
$sessionId,
'catalog_product_attribute_media.create',
array(
$productId,
array('file'=>$file, 'label'=>'new_test_label', 'position'=>'100', 'types'=>array('thumbnail'), 'exclude'=>0)
)
);
我在做什麼錯?