Ben sadece PHP üzerinden (SOAP kullanan) bir API olarak bağlayarak denedim ve bir hata içine çalıştırmak. Ben de sadece SOAP paketi ile PEAR yüklü - onunla hiçbir deneyimi nedenle herhangi bir rehberlik çok duyacağız! Teşekkür ederiz!
Fatal error: Class 'SoapClient' not found in /home/server/public_html/class_console.php on line 19
Class_console.php Line 19
if(is_null($proxyHost) || is_null($proxyPort))
$connection = new SoapClient($wsdl, array('login' => $username, 'password' => $password));
Benim API komut dosyası içerir;
// connection credentials and settings
$location = 'https://theapiurl.com/';
$wsdl = $location.'?wsdl';
$username = 'user';
$password = 'pass';