2

デフォルトの Internet Explorer 接続プロキシ設定を使用して、C++ の cURL でリクエストを作成したいと思います。これが私のサンプル コードです。

CURL *curl;
CURLcode result;

curl = curl_easy_init();

char errorBuffer[CURL_ERROR_SIZE];

if (curl)
{
// Now set up all of the curl options
curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, errorBuffer);
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_HEADER, 0);
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
curl_easy_setopt(curl, CURLOPT_COOKIEJAR, "cookies.txt");

// Attempt to retrieve the remote page
result = curl_easy_perform(curl);

// Always cleanup
curl_easy_cleanup(curl);
}

Proxy Internet Explorer の設定を取得して cURL に渡し、プロキシを使用してリクエストを作成できるようにするにはどうすればよいですか?

前もって感謝します。

4

3 に答える 3

2

WinHttpGetIEProxyConfigForCurrentUser 関数は、現在のユーザーの Internet Explorer プロキシ構成を取得します。

    #include "stdafx.h" 
#include <Windows.h>
#include <Winhttp.h>
#include <iostream>

using namespace std;
void main() 
{ 
    WINHTTP_CURRENT_USER_IE_PROXY_CONFIG MyProxyConfig;

    if(!WinHttpGetIEProxyConfigForCurrentUser(&MyProxyConfig))
    { 
        //check the error DWORD Err = GetLastError(); 
        DWORD Err = GetLastError(); 
        cout << "WinHttpGetIEProxyConfigForCurrentUser failed with the following error number: " << Err << endl;
        switch (Err) 
       {
            case ERROR_FILE_NOT_FOUND: 
            cout << "The error is ERROR_FILE_NOT_FOUND" << endl; 
            break; 
            case ERROR_WINHTTP_INTERNAL_ERROR:
            cout << "ERROR_WINHTTP_INTERNAL_ERROR" << endl; 
            break; 
            case ERROR_NOT_ENOUGH_MEMORY:
            cout << "ERROR_NOT_ENOUGH_MEMORY" << endl; 
            break; 
            default: cout << "Look up error in header file." << endl; 
        }//end switch 
    }//end if 
    else 
    { 
        //no error so check the proxy settings and free any strings 
        cout << "Auto Detect is: " << MyProxyConfig.fAutoDetect << endl; 

        if(NULL != MyProxyConfig.lpszAutoConfigUrl) 
        { 
            wcout << "AutoConfigURL (MyProxyConfig.lpszAutoConfigUrl) is: " << MyProxyConfig.lpszAutoConfigUrl << endl; 
            GlobalFree(MyProxyConfig.lpszAutoConfigUrl);
        } 
        if(NULL != MyProxyConfig.lpszProxy) 
        { 
            wcout << "AutoConfigURL (MyProxyConfig.lpszProxy) is: " << MyProxyConfig.lpszProxy << endl;
            GlobalFree(MyProxyConfig.lpszProxy);
         }
        if(NULL != MyProxyConfig.lpszProxyBypass) 
        {
             wcout << "AutoConfigURL (is: " << MyProxyConfig.lpszProxyBypass << endl;                      
             GlobalFree(MyProxyConfig.lpszProxyBypass); 
        }
    }//end else 
    cout << "finished!"; 
    system("PAUSE");
}//end main
于 2012-09-26T12:10:58.513 に答える
0

InternetQueryOptionwith INTERNET_OPTION_PROXY( documentation )を使用して現在のプロキシ設定を見つけたい場合は、通常どおりプロキシ設定を curl に渡すだけです。

于 2012-05-03T13:06:10.017 に答える