guzzle 发起 https 请求 报错解决方法
2021-03-12 23:32
标签:ssl证书 需要 false 构造 decode ons response url string guzzle 发起http请求与https请求的区别,发起https请求时,需要在构造函数中传入一个配置项, 具体代码如下: 这个配置项就是,‘verify‘=>false ,添加此配置项 即不检查 ssl证书。 guzzle 发起 https 请求 报错解决方法 标签:ssl证书 需要 false 构造 decode ons response url string 原文地址:https://www.cnblogs.com/zqblog1314/p/12822101.html //发起请求
$client = new Client([‘timeout‘ => 5, ‘verify‘ => false]);
$response=$client->get($url,);
$body = (string)$response->getBody();
$arr = json_decode($body, true);
上一篇:TCP/IP协议和HTTP协议
文章标题:guzzle 发起 https 请求 报错解决方法
文章链接:http://soscw.com/index.php/essay/63882.html