Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^3: Proxy Authentication

by xiper (Friar)
on Jun 11, 2004 at 04:39 UTC ( [id://363295]=note: print w/replies, xml ) Need Help??

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;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://363295]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-03-29 05:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found