Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: WWW:::Mechanize and credentials

by Limbic~Region (Chancellor)
on Mar 09, 2005 at 15:52 UTC ( [id://437937]=note: print w/replies, xml ) Need Help??


in reply to WWW:::Mechanize and credentials

Sifmole,
While the other answers in this thread are good, sometimes it helps to have example code:
#!/usr/bin/perl use strict; use warnings; use WWW::Mechanize; my $url= 'http://10.11.12.13/password.html'; my $mech = WWW::Mechanize->new( autocheck => 1 ); $mech->credentials( '10.11.12.13:80', 'ABCDEF', 'admin' => 'password' ); $mech->get( $url ); print $mech->content();

Cheers - L~R

Replies are listed 'Best First'.
Re^2: WWW:::Mechanize and credentials
by petdance (Parson) on Mar 10, 2005 at 17:42 UTC
    Nice. I've added this to the Mech Cookbook.

    xoxo,
    Andy

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (4)
As of 2024-04-19 23:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found