laravel - Guzzle, PHP HTTP client sends https request and reports error
巴扎黑
巴扎黑 2017-05-16 13:08:58
0
1
1237

Using Guzzle in laravel5, how to send HTTPS request with PHP HTTP client https://github.com/guzzle/guzzle
Error when sending post request
cURL error 60: See http://curl.haxx. se/libcurl/c...
CURLE_SSL_CACERT (60)
Peer certificate cannot be authenticated with known CA certificates.

巴扎黑
巴扎黑

reply all(1)
左手右手慢动作
$client->setDefaultOption('verify', false);

or

# 证书 https://github.com/guzzle/guzzle/blob/4.2.3/src/cacert.pem
$client = new \GuzzleHttp\Client(['verify' => '/full/path/to/cert.pem']);
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template