如何再c語言代碼中使用HTTP代理IP。
以下代碼主要圍繞第一次接觸HTTP代理IP的c新手來寫(步驟注釋清晰)。
直接把下面示例代碼中的HTTP代理API,替換成你后臺生成的代理API鏈接,就可以跑起來了。
以下是一個示例代碼,只是一個基礎的演示,具體的代碼還是要根據你業務的實際情況去寫的。
示例代碼中的HTTP代理IP,我使用的是華益云的HTTP代理API,注冊就白嫖1萬個高匿爬蟲IP,有效期是一年,對于調試代碼來說這個時間是非常的友好。
示例代碼demo中同款HTTP代理API-點我免費領取10000個高匿IP
打開代理API,獲取里面的IP,使用IP訪問目標網站,其實代碼中就是執行這個過程而已,然后加了幾個錯誤判斷有助于代碼的穩定運行。(步驟注釋清晰)
// demo.cpp : 定義控制臺應用程序的入口點。
//
#include "stdafx.h"
#include "curl/curl.h"
#include
#include
#pragma comment(lib, "libcurl.lib")
static size_t write_buff_data(char *buffer, size_t size, size_t nitems, void *outstream)
{
memcpy(outstream, buffer, nitems*size);
return nitems*size;
}
/*
使用http代理
*/
int GetUrlHTTP(char *url, char *buff, char* ip)
{
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if (curl)
{
curl_easy_setopt(curl, CURLOPT_PROXY, ip); //代理方式 http://ip:port
curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void*)buff);//獲得訪問結果
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_buff_data);
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_LOW_SPEED_TIME, 10L);
curl_easy_setopt(curl, CURLOPT_LOW_SPEED_LIMIT, 50L);
curl_easy_setopt(curl, CURLOPT_MAX_RECV_SPEED_LARGE, 2000000L);/*下載最高速度*/
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
if (res == CURLE_OK) {
return res;
}
else {
printf("錯誤代碼:%d\n", res);
MessageBox(NULL, TEXT("獲取IP錯誤"), TEXT("助手"), MB_ICONINFORMATION | MB_YESNO);
}
}
return res;
}
//不使用代理
int GetUrl(char *url, char *buff)
{
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if (curl)
{
curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void*)buff);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_buff_data);
curl_easy_setopt(curl, CURLOPT_URL, url);/*訪問url*/
curl_easy_setopt(curl, CURLOPT_LOW_SPEED_TIME, 10L);
curl_easy_setopt(curl, CURLOPT_LOW_SPEED_LIMIT, 50L);
curl_easy_setopt(curl, CURLOPT_MAX_RECV_SPEED_LARGE, 2000000L);/*下載最高速度*/
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
if (res == CURLE_OK)
{
return res;
}
else {
printf("錯誤代碼:%d\n", res);
MessageBox(NULL, TEXT("獲取IP錯誤"), TEXT("助手"), MB_ICONINFORMATION | MB_YESNO);
}
}
return res;
}
//將utf-8轉為gbk格式
void utf8ToGbk(char *utf8String, char *gbkString)
{
wchar_t *unicodeStr = NULL;
int nRetLen = 0;
nRetLen = MultiByteToWideChar(CP_UTF8, 0, utf8String, -1, NULL, 0);//求需求的寬字符數大小
unicodeStr = (wchar_t *)malloc(nRetLen * sizeof(wchar_t));
nRetLen = MultiByteToWideChar(CP_UTF8, 0, utf8String, -1, unicodeStr, nRetLen);//將utf-8編碼轉換成unicode編碼
nRetLen = WideCharToMultiByte(CP_ACP, 0, unicodeStr, -1, NULL, 0, NULL, 0);//求轉換所需字節數
nRetLen = WideCharToMultiByte(CP_ACP, 0, unicodeStr, -1, gbkString, nRetLen, NULL, 0);//unicode編碼轉換成gbk編碼
free(unicodeStr);
}
int main()
{
char *buff = (char*)malloc(1024 * 1024);
memset(buff, 0, 1024 * 1024);
//代理api(這里我推薦使用www.9vps.com華益云的HTTP代理API,注冊就白嫖1萬IP)
GetUrl("http://http.9vps.com/getip.asp?username=166xxxx6597&pwd=xxxxbaa59ce237dff65134984b9cxxxx&geshi=1&fenge=1&fengefu=&Contenttype=1&getnum=20&setcity=&operate=all&", buff);
printf("代理IP列表:\n%s", buff); //輸出
//輸入代理IP
char ip[100];
printf("\nEnter your IP:");
scanf_s("%s", &ip, 100);
//使用代理IP訪問網站
memset(buff, 0, 1024 * 1024);
GetUrlHTTP("http://myip.top", buff, (char*)ip);
utf8ToGbk(buff, buff);//將獲取到的網頁內容轉為gbk格式
printf("\nhttp結果:%s\n", buff);//輸出訪問結果
//不使用代理訪問
GetUrl("http://myip.top", buff);
utf8ToGbk(buff, buff); // 將獲取到的網頁內容轉為gbk格式
printf("不使用代理:%s \n", buff);//輸出訪問結果
Sleep(1000 * 1000);
free(buff);
return 0;
}
聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。
舉報投訴
-
C語言
+關注
關注
180文章
7614瀏覽量
137438 -
HTTP
+關注
關注
0文章
511瀏覽量
31418 -
代碼
+關注
關注
30文章
4823瀏覽量
68904
發布評論請先 登錄
相關推薦
fiddler4_一款由C#語言開發的免費http調試代理軟件
Fiddler是一款由C#語言開發的免費http調試代理軟件,有.net 2 和 .net 4 兩種版本。Fiddler能夠記錄所有的你電腦和互聯網之間的
發表于 12-01 17:19
?21次下載
C語言中的socket編程基礎
Socket編程簡介 Socket是一種通信機制,允許程序之間進行通信。在C語言中,socket編程是網絡編程的基礎。通過使用socket,程序可以發送和接收數據,實現不同計算機之間的通信
評論