FreeBSD Manual Pages
HTTP::Headers::ActionPUser:Contributed:PerleDs::ActionPack::WWWAuthenticate(3) NAME HTTP::Headers::ActionPack::WWWAuthenticate - The WWW-Authenticate Header VERSION version 0.09 SYNOPSIS use HTTP::Headers::ActionPack::WWWAuthenticate; # create from string my $www_authen = HTTP::Headers::ActionPack::WWWAuthenticate->new_from_string( 'Basic realm="WallyWorld"' ); # create using parameters my $www_authen = HTTP::Headers::ActionPack::WWWAuthenticate->new( 'Basic' => ( realm => 'WallyWorld' ) ); # create from string my $www_authen = HTTP::Headers::ActionPack::WWWAuthenticate->new_from_string( q{Digest realm="testrealm@host.com", qop="auth,auth-int", nonce="dcd98b7102dd2f0e8b11d0f600bfb0c093", opaque="5ccc069c403ebaf9f0171e9517f40e41"'} ); # create using parameters my $www_authen = HTTP::Headers::ActionPack::WWWAuthenticate->new( 'Digest' => ( realm => 'testrealm@host.com', qop => "auth,auth-int", nonce => "dcd98b7102dd2f0e8b11d0f600bfb0c093", opaque => "5ccc069c403ebaf9f0171e9517f40e41" ) ); DESCRIPTION This class represents the WWW-Authenticate header and all it's variations, it is based on the HTTP::Headers::ActionPack::Core::BaseAuthHeader class. METHODS "new ( %params )" "new_from_string ( $header_string )" "realm" "as_string" AUTHOR Stevan Little <stevan.little@iinteractive.com> CONTRIBUTORS o Andrew Nelson <anelson@cpan.org> o Dave Rolsky <autarch@urth.org> o Florian Ragwitz <rafl@debian.org> o Jesse Luehrs <doy@tozt.net> o Karen Etheridge <ether@cpan.org> COPYRIGHT AND LICENSE This software is copyright (c) 2012 by Infinity Interactive, Inc.. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.32.0 HTTP::Headers::ActionPack::WWWAuthenticate(3)
NAME | VERSION | SYNOPSIS | DESCRIPTION | METHODS | AUTHOR | CONTRIBUTORS | COPYRIGHT AND LICENSE
Want to link to this manual page? Use this URL:
<https://www.freebsd.org/cgi/man.cgi?query=HTTP::Headers::ActionPack::WWWAuthenticate&sektion=3&manpath=FreeBSD+12.2-RELEASE+and+Ports>