Help for this page

Select Code to Download


  1. or download this
    my $req = HTTP::Request->new(GET => 'https://www.google.com');
    $req->content_type('application/json');
    my $res = $ua->request($req);
    
  2. or download this
    use LWP;
    my $ua = LWP::UserAgent->new;
    my $req = HTTP::Request->new(GET => 'https://www.google.com');
    $req->content_type('application/json');
    my $res = $ua->request($req);
    
  3. or download this
    my $title;
    $res->content =~ m|<title>(.+?)</title>|i and $title = $1;