As the documentation for HTTP::Cookies indicates, the 'add_cookie_header' requires an HTTP::Request object as its argument, and you're passing what appears to be a string.

When dealing with LWP, don't think of a cookie as being something that you yourself attach to a specific request. Think of a "cookie jar" as a totally separate resource. Separately from your request, you have to add your cookie (via the 'set_cookie' method to HTTP::Cookies) to the cookie jar with the site's information (e.g. foo.com, etc.) and the details/value of the cookie. Then, associate that cookie jar with your LWP::UserAgent object and make your request. Let LWP::UserAgent figure out which cookies it needs to send to the server, based upon the contents of the cookie jar. All you need to do is be sure the cookie jar has the data you expect.


In reply to Re: LWP and slow learners by Fastolfe
in thread LWP and slow learners by codemonkey

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.