|
1金钱
网上看了好到好多关于TP-LINK 路由重启的例子,但是我的路由是腾达的,用httpwatch抓包看到的地址跟网上的地址是完全不一样的。郁闷,不知道怎样处理。
我想自己写过代码。但是遇到问题点如下:
1. 我用HttpHelper 的登陆成功了。代码如下:
item.Accept = "image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/x-silverlight, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-ms-application, application/x-ms-xbap, application/vnd.ms-xpsdocument, application/xaml+xml, application/x-silverlight-2-b1, */*",
item.Allowautoredirect = true,
item.PostEncoding = Encoding.GetEncoding("utf-8"),
item.ResultCookieType = ResultCookieType.CookieContainer,
item.URL = "http://192.168.0.1/LoginCheck";
item.Method = "post";
item.Postdata = "Username=admin&checkEn=0&Password=84620755";
item.Host = "192.168.0.1";
item.Referer = "http://192.168.0.1/login.asp";
item.KeepAlive = true;
result = http.GetHtml(item);
2.想直接获取到重启页面,但一直失败。我就转向打开其他页面看看,也一直是失败(如打开首页就转向了登陆的页面)。不知道是什么原因,代码如下:
item.URL = "http://192.168.0.1/index.asp";
item.Method = "get";
item.Postdata = "";
item.Referer = "http://192.168.0.1/login.asp";
item.Host = "192.168.0.1";
result = http.GetHtml(item);
我的数据包如附件.
麻烦各位帮我看看。呵呵如果有腾达重启的例子就更好了。。谢谢。 |
-
-
aa.rar
44.27 KB, 下载次数: 5, 下载积分: 金钱 -1
腾达路由数据包
最佳答案
查看完整内容
登录成功后有没有产生Cookie?
你登录后请求其它页面,带没带Cookie?
|