项目中使用libcurl 访问https的时候会报错,比如:“Unsupported protocol”
或者:“Protocol https not supported or disabled in libcurl”
如果需要支持https访问网络上说需要编译libcurl源码的时候支持OpenSSL 。
或者设定为不验证证书和HOST
下面是网上的说法:
-------------------------------
编译libcurl的时候可有enable ssl的支持?
libcurl重新编一下,增加openssl应该就可以了
---------------
默认情况下,libcurl不支持https, 如果使用https链接,就会出现" Protocol https not supported or disabled in libcurl" 的错误提示。
curl有两种方式使用https :
1. 设定为不验证证书和HOST
code = curl_easy_setopt(handle, CURLOPT_SSL_VERIFYPEER, 0L);//(经测试好像没什么实际作用by_songgp add)
2. 设定一个SSL判别证书
http://curl.haxx.se/ca/cacert.pem
连接地址:http://blog.csdn.net/coodi8/article/details/7945190
连接地址:http://bbs.csdn.net/topics/391044676