C ++中的卷曲 - 无法从HTTPS获取数据

时间:2016-07-20 11:05:21

标签: c++ visual-studio ssl curl openssl

当我尝试使用代码

从HTTPS获取数据时
static size_t WriteCallback(void *contents, size_t size, size_t nmemb, void *userp)
{
    ((std::string*)userp)->append((char*)contents, size * nmemb);
    return size * nmemb;
}

string* NetIO::getUrlContent(string URL) {

    CURL *curl;
    CURLcode res;
    string *s = new string("");

    curl = curl_easy_init();
    if (curl) {
        //curl_easy_setopt(curl, CURLOPT_URL, URL);         
        curl_easy_setopt(curl, CURLOPT_URL, "https://ya.ru/");
        curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
        curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, WriteCallback);
        curl_easy_setopt(curl, CURLOPT_WRITEDATA, s);
        res = curl_easy_perform(curl);
        curl_easy_cleanup(curl);

    }

    return s;
}

它无法接收HTTPS响应的内容并将其写入s变量 - s包含“”。但是,如果我将URL更改为HTTP - 此代码非常有效,s包含页面的HTML代码。

curl_easy_setopt(curl, CURLOPT_URL, "http://tatarstan.shop.megafon.ru/");

如何解决此问题?

谢谢! ❤

更新:如果我添加

curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);

比我的代码运行良好。如果没有CURLOPT_SSL_VERIFYPEER = 0,为什么它不能工作?

我有一些Visual Studio解决方案。它包含2个项目 - libcurl,使用设置编译: enter image description here enter image description here enter image description here

和第二个项目,取决于libcurl项目: enter image description here

2 个答案:

答案 0 :(得分:2)

解决!感谢@hank!

我的解决方案是:

1)在Google Chrome中打开您的网站,打开证书信息。

2)将其及其每个父证书导出为X.509。将concat证书文件放入一个证书文件中 - 制作证书链。

3)使用带有代码

的证书链的文件
curl_easy_setopt(curl, CURLOPT_CAINFO, "c:\\Art\\Projects\\LifeSimLauncher\\MyStaticLib\\lifesim.biz.crt.cer");

答案 1 :(得分:-1)

使用以下代码:

curl_easy_setopt(curl, CURLOPT_USERAGENT, "libcurl-agent/1.0");