在C#中,使用WebClient處理重定向非常簡單。默認情況下,WebClient會自動處理HTTP 301和HTTP 302重定向。當WebClient遇到這些重定向時,它會自動跟隨新的URL并獲取資源。
以下是一個簡單的示例,展示了如何使用WebClient獲取一個可能發(fā)生重定向的URL的內(nèi)容:
using System;
using System.Net;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
string url = "https://example.com/some-redirect-url";
using (WebClient webClient = new WebClient())
{
try
{
string content = await webClient.DownloadStringTaskAsync(url);
Console.WriteLine("Content of the redirected URL:");
Console.WriteLine(content);
}
catch (WebException ex)
{
if (ex.Response != null && ex.Response.StatusCode == HttpStatusCode.Found)
{
Console.WriteLine("Redirected to a new URL:");
string newUrl = ex.Response.Headers["Location"];
Console.WriteLine(newUrl);
// Follow the new URL
string newContent = await webClient.DownloadStringTaskAsync(newUrl);
Console.WriteLine("\nContent of the new URL:");
Console.WriteLine(newContent);
}
else
{
Console.WriteLine("An error occurred while downloading the URL.");
}
}
}
}
}
在這個示例中,我們首先嘗試使用WebClient下載URL的內(nèi)容。如果遇到重定向(HTTP 301或HTTP 302),WebClient會自動跟隨新的URL并獲取資源。我們可以通過檢查ex.Response.StatusCode
是否為HttpStatusCode.Found
來判斷是否發(fā)生了重定向。如果發(fā)生了重定向,我們可以從響應(yīng)頭中獲取新的URL,并使用WebClient再次下載內(nèi)容。