LoginSignup
0
1

More than 5 years have passed since last update.

Goutteでリクエスト時にPeer's Certificate issuer is not recognizedというエラーが出る時の対処法

Last updated at Posted at 2018-03-20

Goutteを利用してリクエストを行った際に


[GuzzleHttp\Ring\Exception\RingException]
cURL error 60: Peer's Certificate issuer is not recognized.

といったエラーが出る場合、

$client = new \Goutte\Client();
$client = $client->request('GET', $url);

から

$client = new \Goutte\Client();
$client->getClient()->setDefaultOption('config/curl/'. CURLOPT_SSL_VERIFYPEER, false);
$client = $client->request('GET', $url);

といった形で証明書の検証を回避する必要がある。

・参考
http://www.phppro.jp/qa/4507

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1