NAME
OAuth::Lite::AuthMethod - auth method constants.
SYNOPSIS
use OAuth::Lite::AuthMethod qw(
AUTH_HEADER
POST_BODY
URL_QUERY
);
$consumer = OAuth::Lite::Consumer->new(
...
auth_method => URL_QUERY,
);
DESCRIPTION
This mere holds constants for auth method on requesting with OAuth.
CONSTANTS
AUTH_HEADER
Using Authorization header for OAuth-authentication.
Authorization: OAuth realm="http://example.org", oauth_consuemr_key="key", ...
POST_BODY
Embed OAuth authentication data into request body.
URL_QUERY
Append OAuth authentication data as query-string.
METHODS
validate_method($method)
unless ( OAuth::Lite::AuthMethod->validate_method($method) ) {
say 'Invalid auth method.';
}
AUTHOR
Lyo Kato, lyo.kato _at_ gmail.com
COPYRIGHT AND LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.