NAME

Catalyst::Authentication::Store::Crowd - Authentication Store with Crowd REST service

SYNOPSIS

use Catalyst qw/
    Authentication

/;

__PACKAGE__->config( authentication => {
    default_realm => 'crowd',
    realms => {
        crowd => {
            credential => {
                class => 'Crowd',
                service_url => 'http://yourcrowdservice.url/authentication,
                app => {
                    app_name => 'your_crowd_app_name',
                    password => 'password_for_app_name',
                }
            },
            store => {
                class => 'Crowd',
                service_url => 'http://yourcrowdservice.url/user,
                app => {
                    app_name => 'your_crowd_app_name',
                    password => 'password_for_app_name',
                }
            }
        },
    }
});

SEE ALSO

https://github.com/keerati/Catalyst-Authentication-Store-Crowd

AUTHOR

Keerati Thiwanruk, <keerati.th@gmail.com<gt>

COPYRIGHT AND LICENSE

Copyright (C) 2012 by Keerati Thiwanruk

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