Hi,
I am using Adwords api v201609 right now but as its sunset date in near i am migrating to v201708 in which i am having problem to address ssl certiface.
"Error: cURL error 60: SSL certificate' " On
Fatal error: Uncaught exception 'GuzzleHttp\Exception\RequestException' with message 'cURL error 60: SSL certificate pro
i found that above error should solve by specifying cert path in
SoapSettingsBuilder.php's withSslCaFile() Funciton
as :
public function withSslCaFile($sslCaFile) {
$this->sslCaFile = path/to/cacert.pem;
return $this;
}
but no luck yet..
Can anyone help me to get this working..
Thanks