The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Plack::Middleware::Auth::QueryString - simple query string authentication

SYNOPSIS

  use Plack::Middleware::Auth::QueryString;
  use Plack::Builder;
  my $app = sub { ... };

  builder {
    enable "Auth::QueryString", password => 'yourpasswordhere';
    $app;
  };
  # http://example.com/?key=yourpasswordhere

DESCRIPTION

Plack::Middleware::Auth::QueryString is query string authentication handler for Plack

CONFIGURATION

key

Query key for authentication. 'key' is default.

password

Query value for authentication.

AUTHOR

Masayuki Matsuki <y.songmu@gmail.com>

SEE ALSO

LICENSE

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