Jump to content

Aggiornare e/o eliminare immagini con API


fiore1088

Recommended Posts

Salve a tutti,

 

sto effettuando l'integrazione e seguendo la documentazione finora non ho avuto grosse difficoltà; unico problema che ho riscontrato è nell'aggiornare immagini in particolar modo di produttori e categorie.

 

Di seguito il codice che utilizzo per inserire l'immagine, e per quanto riguarda l'inserimento tutto bene.

Quando voglio eseguire l'update dell'immagine abbinata al produttore in questione, considero anche CURLOPT_PUT (come riportato nella guida), ma niente da fare.

 

$key="xxxxxxxxxx";
$image_path = 'Desert.jpg';
 
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
//curl_setopt($ch, CURLOPT_PUT, true); // Un-commet to edit an image
curl_setopt($ch, CURLOPT_USERPWD, $key.':');
curl_setopt($ch, CURLOPT_POSTFIELDS, array('image' => '@'.$image_path));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch); 
curl_close($ch);
 
 
Consigli in merito? Grazie
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...