http://club.eebbk.com/login
弄了大半天也没成功
HttpClient httpClient = new HttpClient();
httpClient.getHostConfiguration().setHost("club.eebbk.com", 80);
PostMethod postMethod = new PostMethod(/login);
NameValuePair username = new NameValuePair("userName", "yhqloveliuyifei");
NameValuePair userpassword = new NameValuePair("userPassword", "5083291");
NameValuePair code = new NameValuePair("code", CheckCode);
postMethod.setRequestBody(new NameValuePair[] { username,userpassword,code});
int statusCode = httpClient.executeMethod(postMethod);
验证码的获取:
JLabel lb1 = new JLabel(new ImageIcon(new URL("http://club.eebbk.com/checkcode")));
如果不输入验证码的话,会提示验证码不能为空,返回的状态码为302,如果输入验证码,不管输错输对,返回的状态码都是200,这里应该返回302,提示成功或者错误信息,不应该是200,在这里求大神们指导下该怎么弄?
9 个解决方案
我看了下,恐怕这个网站没这么简单就能登录。
建议你也装个HttpWatcher在IE上,可以截获所有的流信息。
在POST表单前,页面先做了一次验证码检测:
GET /code?code=89934&d=1342950249754&jsoncallback=jQuery1640006495118715272474_1342950234980&_=1342950249755 HTTP/1.1
服务器端返回了一个很有意思的内容:
jQuery1640006495118715272474_1342950234980({rs:'1'})
然后表单才正式提交。
建议你要完整跟踪所有的页面流情况,尤其是很可能有某些Cookie信息和隐藏域的信息。
楼主有没有带验证码的模拟登录啊,跪求源码。能发的话,发送到245641147@qq.com,,再次跪谢