我想知道机械化是否发送正确的帖子查询。
我想登录论坛(请参阅我在其他问题中的html source, mechanize log),但我只会再次登录页面。在查看它时,我可以看到firefox发送带有
等参数的帖子 auth_username=myusername&auth_password=mypassword&auth_login=Login
,但我的脚本发送
auth_username=radek&auth_password=mypassword
是好的还是&auth_login=Login
部分必须存在?
当我尝试使用login_form['auth_login'] = 'Login'
添加时,我收到了错误gems/mechanize-0.9.3/lib/www/mechanize/page.rb:13 in
meta':未定义的方法search' for nil:NilClass (NoMethodError)
在我看来,auth_login是一个表单按钮而不是字段(我不知道它是否重要)
[#<WWW::Mechanize::Form
{name nil}
{method "POST"}
{action
"http://www.somedomain.com/login?auth_successurl=http://www.somedomain.com/forum/yota?baz_r=1"}
{fields
#<WWW::Mechanize::Form::Field:0x36946c0 @name="auth_username", @value="">
#<WWW::Mechanize::Form::Field:0x369451c @name="auth_password", @value="">}
{radiobuttons}
{checkboxes}
{file_uploads}
{buttons
#<WWW::Mechanize::Form::Button:0x36943b4
@name="auth_login",
@value="Login">}>
]
我的脚本如下
require 'rubygems'
require 'mechanize'
require 'logger'
agent = WWW::Mechanize.new {|a| a.log = Logger.new("loginYOTA.log") }
agent.follow_meta_refresh = true #Mechanize does not follow meta refreshes by default, we need to set that option.
page = agent.get("http://www.somedomain.com/login?auth_successurl=http://www.somedomain.com/forum/yota?baz_r=1")
login_form = page.form_with(:method => 'POST') #works
puts login_form.buttons.inspect
puts page.forms.inspect
STDIN.gets
login_form.fields.each { |f| puts "#{f.name} : #{f.value}" }
#STDIN.gets
login_form['auth_username'] = 'myusername'
login_form['auth_password'] = 'mypassword'
login_form['auth_login'] = 'Login'
STDIN.gets
page = agent.submit login_form
#Display message if logged in
puts page.parser.xpath("/html/body/div/div/div/table/tr/td[2]/div/strong").xpath('text()').to_s.strip
puts
puts page.parser.xpath("/html/body/div/div/div/table/tr/td[2]/div").xpath('text()').to_s.strip
output = File.open("login.html", "w") {|f| f.write(page.parser.to_html) }
您可以找到更多代码,html,登录我的其他相关问题log in with browser and then ruby/mechanize takes it over?
答案 0 :(得分:0)
在POST中没有一个参数与firefox相比导致机械化不能登录。添加新参数解决了这个问题。所以在我看来,Web服务器需要&auth_login=Login
参数才能进行POST。
您可以在另一个问题中阅读how to add new field to mechanize form。