shopee-php
shopee-php copied to clipboard
cURL error 60: SSL certificate problem: self signed certificate in certificate chain
" cURL error 60: SSL certificate problem: self signed certificate in certificate chain "
how to ssl disable on localhost?
You can customize the http client:
ref: https://github.com/guzzle/guzzle/blob/dc87640a8669b278af07f8af6d6147a0b148929c/src/Client.php#L225
new Client([
'httpClient' => new HttpClient(['verify' => false]),
]);