我正在尝试连接和下载需要非“超载”身份验证的网站内容。
选项包括:
- 用户
- 用户+密码,
- 用户+密码+域名
我需要用户+订户+密码。我怎样才能通过这个凭据?
代码:
WebClient client = new WebClient();
public void search()
{
client.Credentials = new System.Net.NetworkCredential(username, subscriber, password); //not really exist
Byte[] pageData = client.DownloadData("https://example.com/");
...
}