libcurl 支持openssl 但不能访问https

重新编译了libcurl 去访问https 地址还是不能访问

从网上找到了解决方案:

curl有两种方式使用https :

1. 设定为不验证证书和HOST

code = curl_easy_setopt(handle, CURLOPT_SSL_VERIFYPEER, 0L);

 

加上上面的不验证证书就可以访问https 地址了

posted @ 2022-12-23 16:33  阿风小子  阅读(42)  评论(0编辑  收藏  举报