如何在c語言代碼中使用HTTP代理IP。
以下代碼主要圍繞第一次接觸HTTP代理IP的c新手來寫(步驟注釋清晰)。
直接把下面示例代碼中的HTTP代理API,替換成你后臺生成的代理API鏈接,就可以跑起來了。
以下是一個(gè)示例代碼,只是一個(gè)基礎(chǔ)的演示,具體的代碼還是要根據(jù)你業(yè)務(wù)的實(shí)際情況去寫的。
示例代碼中的HTTP代理IP,我使用的是華益云的HTTP代理API,注冊就白嫖1萬個(gè)高匿爬蟲IP,有效期是一年,對于調(diào)試代碼來說這個(gè)時(shí)間是非常的友好。
華益云-企業(yè)級HTTP爬蟲代理IP供應(yīng)商-點(diǎn)我免費(fèi)領(lǐng)取示例代碼demo中同款10000個(gè)高匿IP
打開代理API,獲取里面的IP,使用IP訪問目標(biāo)網(wǎng)站,其實(shí)代碼中就是執(zhí)行這個(gè)過程而已,然后加了幾個(gè)錯誤判斷有助于代碼的穩(wěn)定運(yùn)行。(步驟注釋清晰)
// demo.cpp : 定義控制臺應(yīng)用程序的入口點(diǎn)。 // #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);//獲得訪問結(jié)果 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轉(zhuǎn)為gbk格式 void utf8ToGbk(char *utf8String, char *gbkString) { wchar_t *unicodeStr = NULL; int nRetLen = 0; nRetLen = MultiByteToWideChar(CP_UTF8, 0, utf8String, -1, NULL, 0);//求需求的寬字符數(shù)大小 unicodeStr = (wchar_t *)malloc(nRetLen * sizeof(wchar_t)); nRetLen = MultiByteToWideChar(CP_UTF8, 0, utf8String, -1, unicodeStr, nRetLen);//將utf-8編碼轉(zhuǎn)換成unicode編碼 nRetLen = WideCharToMultiByte(CP_ACP, 0, unicodeStr, -1, NULL, 0, NULL, 0);//求轉(zhuǎn)換所需字節(jié)數(shù) nRetLen = WideCharToMultiByte(CP_ACP, 0, unicodeStr, -1, gbkString, nRetLen, NULL, 0);//unicode編碼轉(zhuǎn)換成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訪問網(wǎng)站 memset(buff, 0, 1024 * 1024); GetUrlHTTP("http://myip.top", buff, (char*)ip); utf8ToGbk(buff, buff);//將獲取到的網(wǎng)頁內(nèi)容轉(zhuǎn)為gbk格式 printf("\nhttp結(jié)果:%s\n", buff);//輸出訪問結(jié)果 //不使用代理訪問 GetUrl("http://myip.top", buff); utf8ToGbk(buff, buff); // 將獲取到的網(wǎng)頁內(nèi)容轉(zhuǎn)為gbk格式 printf("不使用代理:%s \n", buff);//輸出訪問結(jié)果 Sleep(1000 * 1000); free(buff); return 0; }
由于素材太多,遇到文件缺失跑不起來的情況,可到網(wǎng)站下載完整素材華益云幫助文檔-使用HTTP代理示例代碼
或者直接百度搜索:華益云HTTP代理
審核編輯:湯梓紅
-
C語言
+關(guān)注
關(guān)注
180文章
7604瀏覽量
136685 -
HTTP
+關(guān)注
關(guān)注
0文章
504瀏覽量
31194 -
代碼
+關(guān)注
關(guān)注
30文章
4779瀏覽量
68521
發(fā)布評論請先 登錄
相關(guān)推薦
評論