我要下载一个picture。
但是除非您先打开this,否则您将看不到这张图片。
当我尝试使用下面的代码下载图像时,我得到了403 Unauthorized
:
using (WebClient webClient = new WebClient())
{
webClient.Headers.Add("user-agent", "Other");
webClient.DownloadFile(new Uri("http://lhscanlation.club/images/e8bf71ba342fdc5cce74ac2084fde0a2/139e31ae8d7ae16261e3168e2a5e49e000051.jpeg"), "page_.jpeg");
}
在这种情况下如何摆脱403错误?