Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by king4lex

  1. king4lex

    HTTPS with Perl

    Never mind. I figured it out. Just use LWP::UserAgent's request() function instead of simple_request(). Example: use LWP::UserAgent; my $ua = LWP::UserAgent->new; my $site = $ua->request( new HTTP::Request( 'GET', 'https://www.nodeworks.com' ) ); # Print whatever is returned by...
  2. king4lex

    HTTPS with Perl

    Hi, I'm pretty much a n00b with Perl. I'm writing a script that needs to be able to screen scrape pages off the Internet. I've figured out how to GET and POST using LWP::UserAgent's simple_request() function. But I also need to be able to access HTTPS pages, not just HTTP. I'm not sure how to...

Part and Inventory Search

Back
Top