In future. In the new SDK version, parameters refer to client.php as follows
private function getDefaultCurlOptions() { return array ( CURLOPT_POST => true, CURLOPT_USERAGENT => $this->config['UserAgent'], CURLOPT_VERBOSE => true, CURLOPT_HEADERFUNCTION => array ($this, 'headerCallback'), CURLOPT_RETURNTRANSFER => true, CURLOPT_SSL_VERIFYPEER => true, CURLOPT_SSL_VERIFYHOST => 2 ); }
customization
CURLOPT_SSL_VERIFYPEER => false,
did the trick in my case. However, since I am not a security expert, there are no recommendations from this point of view. At least his job, and you probably don't lose 1 all day, like me.
Alexander De Beur
source share