Last updated 1 year ago
Was this helpful?
There are several modules that provide HTTPS capability. WWW and HTTP::UserAgent are probably the most popular right now, but others exist.
or
use WWW; say get 'https://sourceforge.net/';
use HTTP::UserAgent; say HTTP::UserAgent.new.get('https://sourceforge.net/').content;