From: jazzez ravi Date: 2009-04-04T20:28:43+09:00 Subject: Mechanize gem -- help Hi All, Code: require 'mechanize' @agent = WWW::Mechanize.new source=@agent.get("http://yahoo.com/") puts source # => It gives Source code. NEED: I entered "http://yahoo.com/" this url in browser , but its goes to "http://in.yahoo.com/?p=us". I want to get the redirected url. Is there any possibility to get that redirected link ? Expected Example: require 'mechanize' @agent = WWW::Mechanize.new source=@agent.get("http://yahoo.com/") puts X=source.GET_REDIRECTED_URL #=> http://in.yahoo.com/?p=us Thanks in Advance, P.Raveendran http://raveendran.wordpress.com -- Posted via http://www.ruby-forum.com/.