OAuth::Lite2::ParamMethods - store of builders/parsers for OAuth 2.0 parameters
Contents
Constants
AUTH_HEADER
FORM_BODY
URI_QUERY
Copyright And License
Copyright (C) 2010 by Lyo Kato
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.8 or, at your option, any later version of Perl 5 you may have available.
perl v5.36.0 2023-07-01 OAuth::Lite2::ParamMethods(3pm)
Description
Store of builders/parsers for OAuth 2.0 parameters
Methods
get_param_parser($plack_request)
Pass a Plack::Request object and proper parser for the request.
my $parser = OAuth::Lite2::ParamMethods->get_param_parser( $plack_request )
or $app->error("This is not OAuth 2.0 request");
my ($token, $params) = $parser->parse( $plack_request );
get_request_builder($type)
Returns proper HTTP request builder for the passed $type.
my $builder = OAuth::Lite2::ParamMethods->get_request_builder( AUTH_HEADER );
my $req = $builder->build_request(...);
Name
OAuth::Lite2::ParamMethods - store of builders/parsers for OAuth 2.0 parameters
See Also
OAuth::Lite2::ParamMethod::AuthHeader OAuth::Lite2::ParamMethod::FormEncodedBody
OAuth::Lite2::ParamMethod::URIQueryParameter
Synopsis
use OAuth::Lite2::ParamMethods qw(AUTH_HEADER FORM_BODY URI_QUERY);
# client side
my $builder = OAuth::Lite2::ParamMethods->get_request_builder( AUTH_HEADER );
my $req = $builder->build_request(...);
# server side
my $parser = OAuth::Lite2::ParamMethods->get_param_parser( $plack_request )
or $app->error("This is not OAuth 2.0 request");
my ($token, $params) = $parser->parse( $plack_request );
