Oh beloved, worshipped, sacred, holy Monks: I have written a script to grab a www page. I have to pass cookies in order to get the page. I can successfully get it, but it seems the cookies arent being used properly. I have asked around among all the perl people I know, but no one can answer this for me.
Can anyone find any problems in this code? The cookies file is correct and standardized... looks like this:
#LWP-Cookies-1.0
Set-Cookie3: id=bob_loblaw; path="/"; domain=yoursite.here.com; path_s
+pec; expires="2005-12-31 23:59:33Z"; version=0
Set-Cookie3: username=blahblahblah; path="/"; domain=yoursite.here.com
+; path_spec; expires="2015-11-06 08:09:49Z"; version=0
--------------------------
use strict;
use warnings;
use LWP::UserAgent;
use HTTP::Cookies;
my $rssFile = "dump.rss";
my $wwwSite = "www.your.site.here.com";
my $cookieFile = "c:/cookies.txt";
my $browser = LWP::UserAgent->new;
$browser->timeout(10);
$browser->env_proxy;
$browser->cookie_jar(HTTP::Cookies->new(file => $cookieFile ));
my $response = $browser->get( $wwwSite );
if ($response->is_success) {
open RSSDUMP, ">" . $rssFile;
print RSSDUMP $response->content;
close RSSDUMP;
}
else {
die $response->status_line;
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.