我在Azure上托管了一个Web服务,该服务通过自签名证书在SSL的保护下。

我正在尝试使用以下代码连接到它

CURL *curl;
CURLcode res;

curl = curl_easy_init();

curl_easy_setopt(curl, CURLOPT_URL, "https://XXXXXXXX.cloudapp.net/XXXXXX.svc/getFilms");
curl_easy_setopt(curl, CURLOPT_CAPATH, "C:\\Users\\Jordan\\Desktop\\Jordan-8.pem");
curl_easy_setopt(curl, CURLOPT_CAINFO, "C:\\Users\\Jordan\\Desktop\\Jordan-8.pem");
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);

curl_easy_perform(curl);


然后,我收到以下错误

* Connected to XXXXXXXXX.cloudapp.net
* successfully set certificate verify locations:
* CAfile: C:\Users\Jordan\Desktop\Jordan-8.pem
CApath: C:\Users\Jordan\Desktop\Jordan-8.pem
* SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
* Closing connection #0
* Peer certificate cannot be authenticated with known CA certificates


我做错了什么吗?我已经在网上研究了一段时间,但一无所获。

最佳答案

通常,发生这种情况是因为libcurl使用的SSL证书已过时。我建议切换到cert bundle here,看看您是否有更好的运气。

关于c++ - 在Visual Studio中使用Libcurl发出HTTPS请求时遇到问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12459051/

10-09 20:00