如何在c#語言代碼中使用HTTP代理IP。
以下代碼主要圍繞第一次接觸HTTP代理IP的c#新手來寫(步驟注釋清晰)。
直接把下面示例代碼中的HTTP代理API,替換成你后臺生成的代理API鏈接,就可以跑起來了。
以下是一個示例代碼,只是一個基礎(chǔ)的演示,具體的代碼還是要根據(jù)你業(yè)務(wù)的實際情況去寫的。
示例代碼中的HTTP代理IP,我使用的是華益云的HTTP代理API,注冊就白嫖1萬個高匿爬蟲IP,有效期是一年,對于調(diào)試代碼來說這個時間是非常的友好。
華益云-企業(yè)級HTTP爬蟲代理IP供應(yīng)商-點我免費領(lǐng)取示例代碼demo中同款10000個高匿IP
打開代理API,獲取里面的IP,使用IP訪問目標網(wǎng)站,其實代碼中就是執(zhí)行這個過程而已,然后加了幾個錯誤判斷有助于代碼的穩(wěn)定運行。(步驟注釋清晰)
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) { // 發(fā)送給服務(wù)器的標識 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; } // 目標請求網(wǎng)站 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) { // 如果發(fā)現(xiàn)沒有代理了,就去獲取下。 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) { // 設(shè)置代理部分 client.Proxy = proxy; } // 設(shè)置編碼解析方式為 UTF-8,防止中文亂碼 client.Encoding = Encoding.UTF8; client.Headers.Add("user-agent", userAgent); return client.DownloadString(url); } } }
由于素材太多,遇到文件缺失跑不起來的情況,可到網(wǎng)站下載完整版華益云幫助文檔-使用HTTP代理示例代碼
或者直接百度搜索:華益云HTTP代理
審核編輯:湯梓紅
-
API
+關(guān)注
關(guān)注
2文章
1495瀏覽量
61925 -
HTTP
+關(guān)注
關(guān)注
0文章
504瀏覽量
31164 -
代碼
+關(guān)注
關(guān)注
30文章
4774瀏覽量
68503
發(fā)布評論請先 登錄
相關(guān)推薦
評論