我想使用默认的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);
}
如何检索代理Internet Explorer设置,然后传递给我的cURL,以便能够使用代理发出请求?
提前致谢。
答案 0 :(得分:2)
#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
答案 1 :(得分:0)
您希望InternetQueryOption
与INTERNET_OPTION_PROXY
(documentation)一起使用以查找当前的代理设置,然后这只是passing the proxy setting to curl的问题。
答案 2 :(得分:0)
首先,使用windows api获取代理服务器,然后使用curl_easy_setopt将代理设置为curl。
获取代理:
WinHttpGetIEProxyConfigForCurrentUser
这个api可以获得代理,但没有WPAD。如果有人使用&#34;使用自动代理配置&#34;,应使用WinHttpGetProxyForUrl
api获取代理。所有msdn:http://msdn.microsoft.com/en-us/library/windows/desktop/aa384096(v=vs.85).aspx
设置代理:curl_easy_setopt(hCurl, CURLOPT_PROXY, astrProxy.c_str());