如何在c#语言代码中使用HTTP代理IP。
以下代码主要围绕第一次接触HTTP代理IP的c#新手来写(步骤注释清晰)。
直接把下面示例代码中的HTTP代理API,替换成你后台生成的代理API链接,就可以跑起来了。
以下是一个示例代码,只是一个基础的演示,具体的代码还是要根据你业务的实际情况去写的。
示例代码中的HTTP代理IP,我使用的是华益云的HTTP代理API,注册就白嫖1万个高匿爬虫IP,有效期是一年,对于调试代码来说这个时间是非常的友好。
华益云-企业级HTTP爬虫代理IP供应商-点我免费领取示例代码demo中同款10000个高匿IP
打开代理API,获取里面的IP,使用IP访问目标网站,其实代码中就是执行这个过程而已,然后加了几个错误判断有助于代码的稳定运行。(步骤注释清晰)
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Net; using System.Text; namespace proxyRequests { class ProxyInfo { private string host; private int port; public ProxyInfo(string host, int port) { this.host = host; this.port = port; } public string getHost() { return host; } public int getPort() { return port; } } class Program { static void Main(string[] args) { // 发送给服务器的标识 string userAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/532.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36"; // 代理api(这里我推荐使用www.9vps.com华益云的HTTP代理API,注册就白嫖1万IP) string proxyUrl = "http://http.9vps.com/getip.asp?username=166xxxx6597&pwd=xxxxbaa59ce237dff65134984b9cxxxx&geshi=1&fenge=1&fengefu=&Contenttype=1&getnum=20&setcity=&operate=all&"; List outPutProxy = getProxy(proxyUrl, userAgent); if (outPutProxy.Count == 0) { return; } // 目标请求网站 string url = "https://www.qq.com/"; outPutProxy.Add(new ProxyInfo("1", 0)); for (int i = 0; i < 3; i++) { // 最多尝试三次 try { ProxyInfo px = outPutProxy[0]; outPutProxy.Remove(px); WebProxy proxy = new WebProxy(px.getHost(), px.getPort()); string outHtml = requestGet(url, userAgent, proxy); Console.WriteLine(outHtml); break; } catch (Exception e) { Console.WriteLine(e.StackTrace); if (outPutProxy.Count == 0) { // 如果发现没有代理了,就去获取下。 outPutProxy = getProxy(proxyUrl, userAgent); } } } //Console.WriteLine(requestGet(@"https://www.baidu.com/", userAgent)); //Console.ReadKey(); } static List getProxy(string proxyUrl, string userAgent) { //String proxyUrl = "http://http1.9vps.com/getip.asp?username=用户名&pwd=API密码串&geshi=1&fenge=1&fengefu=&Contenttype=1&getnum=2"; string proxyIps; List outPutProxy = new List(); try { proxyIps = requestGet(proxyUrl, userAgent, null); Console.WriteLine(proxyIps); // {"code":3002,"data":[],"msg":"error!用户名或密码错误","success":false} if (proxyIps.Contains("{")) { throw new Exception("[错误]" + proxyIps); } String[] splitedString = proxyIps.Split('\n'); for (int i = 0; i < splitedString.Length; i++) { /* * 180.104.192.217:22036 * 150.104.192.217:21036 */ String[] ret = splitedString[i].Split(':');// 180.104.192.217:22036 String host = ret[0]; // 180.104.192.217 int port = int.Parse(ret[1]); // 22036 outPutProxy.Add(new ProxyInfo(host, port)); } } catch (Exception e) { Console.WriteLine(e.StackTrace); } Console.WriteLine("总共获取了" + outPutProxy.Count + "个代理"); return outPutProxy; } static string requestGet(string url, string userAgent, WebProxy proxy) { WebClient client = new WebClient(); if (proxy != null) { // 设置代理部分 client.Proxy = proxy; } // 设置编码解析方式为 UTF-8,防止中文乱码 client.Encoding = Encoding.UTF8; client.Headers.Add("user-agent", userAgent); return client.DownloadString(url); } } }
由于素材太多,遇到文件缺失跑不起来的情况,可到网站下载完整版华益云帮助文档-使用HTTP代理示例代码
或者直接百度搜索:华益云HTTP代理
审核编辑:汤梓红
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。
举报投诉
-
API
+关注
关注
2文章
1471浏览量
61741 -
HTTP
+关注
关注
0文章
499浏览量
30972 -
代码
+关注
关注
30文章
4719浏览量
68210
发布评论请先 登录
相关推荐
fiddler4_一款由C#语言开发的免费http调试代理软件
Fiddler是一款由C#语言开发的免费http调试代理软件,有.net 2 和 .net 4 两种版本。Fiddler能够记录所有的你电脑和互联网之间的
发表于 12-01 17:19
•21次下载
如何在Vitis HLS中使用C语言代码创建AXI4-Lite接口
您是否想创建自己带有 AXI4-Lite 接口的 IP 却感觉无从着手?本文将为您讲解有关如何在 Vitis HLS 中使用 C 语言
python代码中如何使用HTTP代理
华益云HTTP代理API有效期是一年,也就是说一年内这1万IP用完就没了,如果你一年都用不完那到时候剩余IP才会被清零,对于调试代码来说时间
评论