in reply to how to read local cookies with LWP

Hi weihe,

What you're asking for is very browser-specific; there's no standard for system-wide cookie storage. You'll have to figure out how the browser you're using stores cookies, either from its documentation, its source code, or by poking around and seeing what it does. Then you can find them in its store and tell LWP about them.

IIRC, IE stores its cookies in a cookies directory somewhere in the user's settings; you can probably get the name of the directory from the registry.

Replies are listed 'Best First'.
Re^2: how to read local cookies with LWP
by weihe (Initiate) on Apr 28, 2006 at 18:16 UTC
    i use internet explorer 6.0, while i login the website ,it would excute this method,this code in this following,
    $namecookie = cookie(-name => "amembernamecookie", -value => "$ +inmembername", -path => "$cookiepath/", -expires => "$CookieDate"); $passcookie = cookie(-name => "apasswordcookie", -value = +> "$inpassword", -path => "$cookiepath/", -expires => "$CookieDate" +); print header(-cookie=>[$namecookie,$passcookie] , -expires=>"$EXP_MODE +" , -cache=>"$CACHE_MODES");
    and while i use lwp to load the webpage , it will use this code to read my computer's cookies about username and password, the code is
    if (! $inmembername) { $inmembername = cookie("amembernamecookie"); } if (! $inpassword) { $inpassword = cookie("apasswordcookie"); }
    as you know LWP is not support cookies by default, and though we use http::cookies to create a cookie file in the harddisk, but it is not equal to the cookies which we login the website and create by server. thanks for you reply me, how can i read the cookies or set cookies with my username and password, while i use a LWP to download the webpage ,the server can know me through the cookies value