|
想写一个控制路由器的exe 用httpHelper 登陆 https://userid:userps@192.168.1.1 路由器
遇到401错误
private void vistapage()
{
HttpHelper http = new HttpHelper();
//创建Httphelper参数对象
HttpItem item = new HttpItem()
{
URL = "https://admin:admin@192.168.1.1",//URL 如果用浏览器 访问该地址 会直接登陆路由器。但我想要程序自动登陆。
Method = "get",
ContentType = "text/html",
CerPath = "D:\\51.cer"
};
HttpResult result = http.GetHtml(item);
string html = result.Html;
string cookie = result.Cookie;
MessageBox.Show("cookie " + cookie); //这里 获得的 cookie 是空的
MessageBox.Show("html " + html); // html 的内容 是 一个 401 错误的 html 代码。
}
我希望 获取的 登陆后成功的 html
请问 应该 怎么办?
|
|