名前¶
HTTP::Cookies::Netscape - access to Netscape cookies files
HTTP::Cookies::Netscape - Netscape のクッキーファイルにアクセスする
概要¶
use LWP;
use HTTP::Cookies::Netscape;
$cookie_jar = HTTP::Cookies::Netscape->new(
file => "c:/program files/netscape/users/ZombieCharity/cookies.txt",
);
my $browser = LWP::UserAgent->new;
$browser->cookie_jar( $cookie_jar );
説明¶
This is a subclass of HTTP::Cookies
that reads (and optionally writes) Netscape/Mozilla cookie files.
これは Netscape/Mozilla クッキーファイルを読み込む(そしてオプションとして 書き込む)ための HTTP::Cookies
のサブクラスです。
See the documentation for HTTP::Cookies.
HTTP::Cookies の説明を参照してください。
CAVEATS¶
Please note that the Netscape/Mozilla cookie file format can't store all the information available in the Set-Cookie2 headers, so you will probably lose some information if you save in this format.
Netscape/Mozilla クッキーファイル形式は Set-Cookie2 ヘッダで 利用可能な全ての情報は保存できないので、この形式で保存すると おそらくいくつかのデータが失われることに注意してください。
At time of writing, this module seems to work fine with Mozilla Phoenix/Firebird.
書き込み時には、このモジュールは Mozilla Phoenix/Firebird では うまく動作しているように見えます。
SEE ALSO¶
コピーライト¶
Copyright 2002-2003 Gisle Aas
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.