This repository contains a couple of examples of how to download HTML from a URL using two different Perl modules: * LWP::UserAgent * Mojo::UserAgent Both of these approaches requiring knowing the Session ID of a valid cookie to the site you are trying to download from. To find the Session ID, first log into a site in either Chrome or Firefox and then launch the "Developer Tools" or "Web Developer Tool". Pressing `Ctrl+Shift+I` should work on both browsers. From there, go to "Storage", "Cookies" and then click on the cookie for the URL you want to download. Note the "value" field where "Name" equals `session`. The value of "value" should be something like: `90ipwx7093le8uu5jjaiva12mdhdfftyb8ig44eydhvimjva9roqwmiutpwzphekeje82qr6469pt71 9r86gmnp2z5ja4sxjbokvyj8pilaweo17tdcvhidayvzyt4yc` You will need to provide that in the hash reference for the `cookie_jar`. Both of these examples are an attempt to replicate the `curl` command: `curl https://example.com --cookie "session=90ip...pt71" -o "output.txt"`