Help for this page

Select Code to Download


  1. or download this
    Proxy-Authorization: Basic <string>
    
  2. or download this
    use MIME::Base64;
    print encode_base64( join( ':', $username, $password ) );
    
  3. or download this
    print "Proxy-Authorization: Basic SSdtIG5vdCB0aGF0IHN0dXBpZC4uLiA6KQ==
    +\n";
    
  4. or download this
    use HTTP::Headers;
    my $header = HTTP::Headers->new( Proxy_Authorization => 'Basic SSdtIG5
    +vdCB0aGF0IHN0dXBpZC4uLiA6KQ==' );
    
  5. or download this
    my $request = new HTTP::Request('GET', $ARGV[0], $header);
    
  6. or download this
    use japh; print;