Help for this page

Select Code to Download


  1. or download this
    $mech->get( $TLKAUDITSURL );
    print $mech->content();
    
  2. or download this
    $VAR1 = bless( {
                     '_protocol' => 'HTTP/1.1',
    ...
                                          }, 'HTTP::Request' )
                   }, 'HTTP::Response' );
    
  3. or download this
    $mech->get( $TLKAUDITSURL, ':content_file' => $TMPAUDITSLOG );
    open( FH, '<', $TMPAUDITSLOG );
    ...
        chomp $line;
        print $line . "\n";
    }
    
  4. or download this
                     'handlers' => {
                                     'response_done' => [
    ...
                                                          }
                                                        ]
                                   },