Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/ruby/22.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ruby Mechanize登录表单提交错误_Ruby_Mechanize - Fatal编程技术网

Ruby Mechanize登录表单提交错误

Ruby Mechanize登录表单提交错误,ruby,mechanize,Ruby,Mechanize,我正在尝试登录,然后重定向到该页面,但它再次将我重定向到登录页面。我也尝试过这样做,但我仍然有同样的问题 require "mechanize" a = Mechanize.new { |agent| agent.user_agent_alias = 'Mac Safari' } a.get('http://erp.jecrcuniversity.edu.in:8084/jecrc_academia/') do |page| page.form_with(

我正在尝试登录,然后重定向到该页面,但它再次将我重定向到登录页面。我也尝试过这样做,但我仍然有同样的问题

    require "mechanize"

    a = Mechanize.new { |agent| agent.user_agent_alias = 'Mac Safari' }
    a.get('http://erp.jecrcuniversity.edu.in:8084/jecrc_academia/') do |page|
       page.form_with(name: "loginForm") do |f|
        f.userId = ARGV[0]
        f.password1 = ARGV[1]
      end.submit
    end

    a.get('http://122.15.3.5:8084/jecrc_webguru/login.do') do |page|
      pp page
    end
我的表格的漂亮印刷体是:

  # jecrc_form = page.form('loginForm')
  # username_field = jecrc_form.field_with(:name => 'userId')
  # username_field.value = ARGV[0];
  # password_field = jecrc_form.field_with(:name => 'password1')
  # password_field.value = ARGV[1]
  # jecrc_form.click_button

以下是浏览器发送的内容:

当前时间:MTQ5MTg3OTYzNDAwMA== 用户ID:foo 密码:37b51d194a7513e45b56f6524f2d51f2 密码1:酒吧
密码看起来像md5,在本例中currentTime是时间戳1491879634000的base64。

我的问题与此类似:答案中都有md5,所以有点类似
{forms
      #<Mechanize::Form
       {name "loginForm"}
       {method "POST"}
       {action "/jecrc_academia/CommonLoginCheck.do
       ;sessionid=1EA144A84FA0B3845126723B95634B4F"}            
       {fields
        [hidden:0x126d9e0 type: hidden name: currentTime value: ]
        [text:0x126d88c type: text name: userId value: ]
        [hidden:0x126d738 type: hidden name: password value: ]
        [field:0x126d5e4 type: password name: password1 value: ]}
       {radiobuttons}
       {checkboxes}
       {file_uploads}
       {buttons [button:0x126d47c type: button name:  value: Login]}>}>