<?php $url="https: //api.dclink.com.ua/api/[Die Methode, die Sie brauchen]"; //Beispiel:
https://api.dclink.com.ua/api/GetPrice $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, array ( 'login' => 'YOUR_LOGIN', 'password' => 'YOUR_PASSWORD', 'option' => 'option_value' )); //Parameter anfordern curl_setopt($ch, CURLOPT_URL, $url); $ausgabe = curl_exec($ch); //Antwort curl_close($ch); ?> Zusätzliche Parameter: 'lang' - Mit diesem Parameter können Sie auswählen, in welcher Sprache die Antwort gesendet wird. Standardwert ist 'UA' 'showprice' => '1' - Verfügbare Preisspalten anzeigen 'altname' => '1' - Vollständiger Produktname