- 论坛徽章:
- 0
|
本帖最后由 stdtd 于 2011-11-16 16:24 编辑
不知哪里没设置好, 也换了好多个agent,但这个小脚本老是登录不了,,
- #!/usr/bin/perl
- use strict;
- use WWW::Mechanize;
- use Encode;
- my $url = "http://passport.115.com/?ac=login&tpl=pc";
- my $http_user_agent = 'Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Mobile/7B405';
- my $mech = WWW::Mechanize->new( cookie_jar => {} );
- $mech->add_header( 'User-agent' => $http_user_agent);
- $mech->get($url);
- $mech->submit_form(
- form_id => 'loginForm',
- fields => {
- 'login%5Baccount%5D' => 'okabc123',
- 'login%5Bpasswd%5D' => 'abc123ha',
- 'goto' => 'http://115.com'
- },
- );
- print "content: \n".encode("utf-8",$mech->content)."\n\n";
- print "isSuccess: ".$mech->success."\n";
复制代码 $mech->success 的返回结果是1,但$mech->content 中有“密码输入错误”这样的提示:- <p style="color: red; font-weight: bold;" id="loginError">密码输入错误!</p>
复制代码 可那用户名和密码肯定是正确的啊,按正常方式打开浏览器能成功登录。
下面是登录页面的form:
- <form rel="right" action="?ac=login&tpl=pc&app=u" id="loginForm" method="post">
- <input type="hidden" value="http://115.com" name="goto">
- <div class="mt20 pr">
- <label for="username" class="text-label gray pa" style="display: none;">您的邮箱</label>
- <input type="text" data-error="邮箱不能为空!" id="username" name="login[account]" class="text required">
- <!--<div class="fill-tip pa">
- <span><b class="sign-bak ib"></b><label class="fl">用户名不能为空!</label></span>
- </div>-->
- </div>
- <div class="mt20 pr">
- <label for="password" class="text-label gray pa" style="display: none;">输入密码</label>
- <input type="password" data-error="密码不能为空!" id="password" name="login[passwd]" class="text required">
- </div>
- <div class="mt20 clearfix checkbox-parent">
- <span class="fl">
- <input type="checkbox" name="login[time]" id="autoLogin"><label for="autoLogin">自动登录</label>
- </span>
- </div>
- <div class="mt20">
- <input type="submit" value="登录" class="btn sign-bak login"> <a class="ml10" target="_blank" href="/?ct=forgot_passwd">忘记密码?</a>
- </div>
- </form>
复制代码 在正常的登录流程中,浏览器向服务器提交的信息如下:
- Host = passport.115.com
- User-Agent = Mozilla/5.0 (Windows NT 5.1; rv:7.0.1) Gecko/20100101 Firefox/7.0.1
- Accept = text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
- Accept-Language = en-us,en;q=0.5
- Accept-Encoding = gzip, deflate
- Accept-Charset = ISO-8859-1,utf-8;q=0.7,*;q=0.7
- Connection = keep-alive
- Referer = http://passport.115.com/?ac=login&tpl=pc
- Content-Type = application/x-www-form-urlencoded
- Content-Length = 80
- POSTDATA = goto=http%3A%2F%2F115.com&login%5Baccount%5D=okabc123&login%5Bpasswd%5D=abc123ha
复制代码 按网上的方法测试了好久都没登录成功
请高手们指点指点啊,
谢谢!! |
|