自分メモ。
LWP で ベーシック認証のかかったページにアクセスするには、authorization_basic を使えば良いらしい。簡単だ。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/usr/bin/perl use strict; use LWP::UserAgent; use HTTP::Request; $req ->authorization_basic( 'account' , 'password' ); my $ua = LWP::UserAgent->new(); my $res = $ua ->request( $req ); if ( $res ->is_success) { print $res ->content; } else { print $res ->code; } |
このエントリーのトラックバックURL
http://www.deftrash.com/admin/mt4/mt-tb.cgi/524
I'm extremely impressed along with your writing abilities as neatly as with the format on your weblog. Is that this a paid topic or did you modify it your self? Either way keep up the nice high quality writing, it's uncommon to look a nice weblog like this one today..