c#語言中怎么使用HTTP代理。
以下代碼主要圍繞第一次接觸HTTP代理IP的c#新手來寫(步驟注釋清晰)。
直接把下面示例代碼中的HTTP代理API,替換成你后臺生成的代理API鏈接,就可以跑起來了。
以下是一個示例代碼,只是一個基礎的演示,具體的代碼還是要根據(jù)你業(yè)務的實際情況去寫的。
示例代碼中的HTTP代理IP,我使用的是華益云的HTTP代理API,注冊就白嫖1萬個高匿爬蟲IP,有效期是一年,對于調(diào)試代碼來說這個時間是非常的友好。
示例代碼demo中同款HTTP代理API-點我免費領取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ā)送給服務器的標識
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)
{
// 設置代理部分
client.Proxy = proxy;
}
// 設置編碼解析方式為 UTF-8,防止中文亂碼
client.Encoding = Encoding.UTF8;
client.Headers.Add("user-agent", userAgent);
return client.DownloadString(url);
}
}
}
-
API
+關注
關注
2文章
1499瀏覽量
61964 -
HTTP
+關注
關注
0文章
504瀏覽量
31194 -
代碼
+關注
關注
30文章
4779瀏覽量
68524
發(fā)布評論請先 登錄
相關推薦
評論