I need to get a lot of images from a web server by examining the webpage for image url, then fetching the image. the problem is that the server requires username and password authentication and not just basic http authentication. they have some script that sets a bunch of cookies. right now i am doing this by so (and I have already tried Image::Grab to no avail)
$req = new HTTP::Request 'GET',"http://ftp.website.com/download.asp?f= +/image.gif $req->push_header(cookie=>"ID=b9a15e1"); $req->push_header(cookie=>"SESSION=LLMODEMBGI"); my $ua = new LWP::UserAgent; $rc = $ua->request($req); my $image = $rc->content;
but their server doesn't seem to recognize the cookies being sent, even though that is the same data being used by netscape/IE/Opera etc, etc. thus i am unable to get the image.
----
FightLiteracy
http://www.fightliteracy.com

In reply to Get an image off a server and send cookies by fightliteracy

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.