The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Catalyst::Plugin::Authentication::Basic::Remote - Authentication at Remote host's Basic one.

SYNOPSIS

  use Catalyst;
  MyApp->setup(qw/Authentication::Basic::Remote Session::FastMmap/);

  MyApp->config(
      authentication => {
          auth_url => 'http://example.com/',
          
          # option
          view_tt  => 'MyApp::V::TT',
          template => '401.tt',
      },
  );

DESCRIPTION

Catalyst authentication plugin that use remote host's Basic authentication.

It is only first time that plugin request to remote host for authentication. After that, user infomation keeps in sessions.

METHODS

prepare
dispatch
logout

SEE ALSO

Catalyst

AUTHOR

Daisuke Murase, <typester@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2005 by Daisuke Murase

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.