Hallo Shopware-Kenner,
ich bin neu bei Shopware und noch nutzen wir Version 5.6.X. Ich versuche, per REST API auf das Atikelbild zuzugreifen. Wie mache ich das? Ich nutze cURL/PHP und so sieht es aus:
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://[domain.tld]/api/articles?filter[0][property]=active&filter[0][value]=1&limit=3&sort[0][property]=added&sort[0][direction]=DESC',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'Authorization: Basic [key...]'
),
));
$response = curl_exec($curl);
Ich hole mir also die neuesten drei aktiven Artikel. Aber wie komme ich an das Artikelbild und den Preis? Beides finde ich nicht in den zurückgegebenen Werten.
Danke für eure Tipps!
Viele Grüße
winnewoerp