0
我有這樣的wget要求:C#讓wget的要求
wget --http-user="user" --http-passwd="password"
www.example.com
在HTTP請求中我寫的URL地址,但我不知道放在哪裏登錄見識。 謝謝
我有這樣的wget要求:C#讓wget的要求
wget --http-user="user" --http-passwd="password"
www.example.com
在HTTP請求中我寫的URL地址,但我不知道放在哪裏登錄見識。 謝謝
如何:
string page;
using(var client = new WebClient()) {
client.Credentials = new NetworkCredential("user", "password");
page = client.DownloadString("http://www.example.com/");
}
?
[使用HTTP驗證與C#WebRequest]可能重複(http://stackoverflow.com/questions/707888/using-http-authentication-with-a-c-sharp-webrequest) – Sjoerd 2012-02-24 12:45:41