Dear Manuel Lemos,
i've refered to below post to upload photo to etsy:
phpclasses.org/discuss/blog/Package
...
it works fine.
however when i tried to upload multiple images, only one image is being uploaded.
$success = $client->CallAPI(
$etsy_str_update, 'POST', array(
'image' => '../media/catalog/product/4/5/450-019-800x800.jpg',
'image' => '../media/catalog/product/4/5/450-010-800x800.jpg'
), array('FailOnAccessError'=>true,
'Files'=>array(
'image'=>array(
)
)), $upload);
i knew there's something need to do with this array:
array(
'image' => '../media/catalog/product/4/5/450-019-800x800.jpg',
'image' => '../media/catalog/product/4/5/450-010-800x800.jpg'
)
Can you please help me on this? Thank you so much.