Skip to content

Instantly share code, notes, and snippets.

@kraih
Last active September 24, 2015 15:17
Show Gist options
  • Save kraih/767558 to your computer and use it in GitHub Desktop.
Save kraih/767558 to your computer and use it in GitHub Desktop.
use Mojo::UserAgent;
my $ua = Mojo::UserAgent->new(cert => 'client.crt', key => 'client.key');
$ua->get('https://localhost/s3cret.html')->res->dom('#launch-codes > li')->each(sub {
print shift->text;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment