如何在c语言代码中使用HTTP代理IP。
以下代码主要围绕第一次接触HTTP代理IP的c新手来写(步骤注释清晰)。
直接把下面示例代码中的HTTP代理API,替换成你后台生成的代理API链接,就可以跑起来了。
以下是一个示例代码,只是一个基础的演示,具体的代码还是要根据你业务的实际情况去写的。
示例代码中的HTTP代理IP,我使用的是华益云的HTTP代理API,注册就白嫖1万个高匿爬虫IP,有效期是一年,对于调试代码来说这个时间是非常的友好。
华益云-企业级HTTP爬虫代理IP供应商-点我免费领取示例代码demo中同款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; }
由于素材太多,遇到文件缺失跑不起来的情况,可到网站下载完整素材华益云帮助文档-使用HTTP代理示例代码
或者直接百度搜索:华益云HTTP代理
审核编辑:汤梓红
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。
举报投诉
-
C语言
+关注
关注
180文章
7604浏览量
136614 -
HTTP
+关注
关注
0文章
504浏览量
31164 -
代码
+关注
关注
30文章
4774浏览量
68503
发布评论请先 登录
相关推荐
如何在Vitis HLS中使用C语言代码创建AXI4-Lite接口
您是否想创建自己带有 AXI4-Lite 接口的 IP 却感觉无从着手?本文将为您讲解有关如何在 Vitis HLS 中使用 C 语言
python代码中如何使用HTTP代理
华益云HTTP代理API有效期是一年,也就是说一年内这1万IP用完就没了,如果你一年都用不完那到时候剩余IP才会被清零,对于调试代码来说时间
评论