Skip to content

Instantly share code, notes, and snippets.

@songjiayang
Created May 11, 2013 10:25
Show Gist options
  • Save songjiayang/5559542 to your computer and use it in GitHub Desktop.
Save songjiayang/5559542 to your computer and use it in GitHub Desktop.
mechanize cookie...
def get_cookie
buffer = StringIO.new
@agent.cookie_jar.dump_cookiestxt(buffer)
buffer.string
end
def set_cookie cookie
@agent.cookie_jar.load_cookiestxt(cookie) unless cookie.blank?
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment