如何在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文章
1510瀏覽量
62288 -
HTTP
+關注
關注
0文章
511瀏覽量
31417 -
代碼
+關注
關注
30文章
4823瀏覽量
68897
發布評論請先 登錄
相關推薦
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才會被清零,對于調試代碼來說時間
評論