C
Chugm 456789
Hallo everybody,
I try to write a script that checks my gmails automatically. But when I
try to submit the login form, I get the exception 404 =>
Net::HTTPNotFound. Can anyone help?
Code is:
@LoginUrl = 'http://mail.google.com/mail/'
@agent = Mechanize.new
@agent.keep_alive = false
@agent.user_agent = 'Mozilla/5.0 (Windows; U; Windows NT 5.0; de;
rv:1.9.2) Gecko/20100115 Firefox/3.6'
@agent.follow_meta_refresh = true
@agent.redirect_ok = true
@agent.ca_file = 'cacert.pem'
login_page = @agent.get(@LoginUrl)
begin
login_form = login_page.forms.first
login_form.Email = account
login_form.Passwd = password
login_response_page = @agent.submit login_form
rescue Exception => e
print e, "\n"
end
Thanks in advance!
I try to write a script that checks my gmails automatically. But when I
try to submit the login form, I get the exception 404 =>
Net::HTTPNotFound. Can anyone help?
Code is:
@LoginUrl = 'http://mail.google.com/mail/'
@agent = Mechanize.new
@agent.keep_alive = false
@agent.user_agent = 'Mozilla/5.0 (Windows; U; Windows NT 5.0; de;
rv:1.9.2) Gecko/20100115 Firefox/3.6'
@agent.follow_meta_refresh = true
@agent.redirect_ok = true
@agent.ca_file = 'cacert.pem'
login_page = @agent.get(@LoginUrl)
begin
login_form = login_page.forms.first
login_form.Email = account
login_form.Passwd = password
login_response_page = @agent.submit login_form
rescue Exception => e
print e, "\n"
end
Thanks in advance!