Hi all.
I’m doing a web site using “WWW::Mechanize”.
From my application, when I’m using the web site, I have a link, and
when I make click on the Iink, I want to log with my google mail, this
already works but now, I want to show the home page after logged.
This is my source:
require ‘rubygems’
require ‘mechanize’
def loggin
user = ‘[email protected]’
pass = ‘abc123’
agent = WWW::Mechanize.new
page = agent.get
form = page.forms.first
form.login = user
form.passwd = pass
page = agent.submit form
I tried this, but it didn’t work
redirect_to 'https://mail.google.com/mail/?shva=1#'
end