OAuth::Lite - OAuth framework


OAuth-Lite documentation Contained in the OAuth-Lite distribution.

Index


Code Index:

NAME

Top

OAuth::Lite - OAuth framework

SYNOPSIS

Top

CONSUMER SIDE

See OAuth::Lite::Consumer

SERVICE PROVIDER SIDE

See OAuth::Lite::ServerUtil.

or if you want to build server on mod_perl2, See OAuth::Lite::Server::mod_perl2.

DESCRIPTION

Top

This framework allows you to make "OAuth Consumer Application" / "OAuth Service Provider" easily.

SEE ALSO

Top

http://oauth.net/

OAuth::Lite::Consumer OAuth::Lite::ServerUtil OAuth::Lite::Server::mod_perl2

AUTHOR

Top

Lyo Kato, lyo.kato _at_ gmail.com

COPYRIGHT AND LICENSE

Top


OAuth-Lite documentation Contained in the OAuth-Lite distribution.

package OAuth::Lite;

use strict;
use warnings;

our $VERSION = "1.30";
our $OAUTH_DEFAULT_VERSION = "1.0";

1;

__END__