logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

OAuth::Lite2::ParamMethod::AuthHeader - builder/parser for OAuth 2.0 AuthHeader type of parameter

Author

       Lyo Kato, <lyo.kato@gmail.com>

Description

       builder/parser for OAuth 2.0 AuthHeader type of parameter

Methods

new
       Constructor

   match($plack_request)
       Returns true if passed Plack::Request object is matched for the type of this method.

           if ( $meth->match( $plack_request ) ) {
               ...
           }

   parse($plack_request)
       Parse the Plack::Request, and returns access token and oauth parameters.

           my ($token, $params) = $meth->parse( $plack_request );

   build_request(%params)
       Build HTTP::Request object.

           my $req = $meth->build_request(
               url          => $url,
               method       => $http_method,
               token        => $access_token,
               oauth_params => $oauth_params,
               params       => $params,
               content      => $content,
               headers      => $headers,
           );

   is_legacy($plack_request)
       Returns true if passed Plack::Request object is based draft version 10.

           if ( $meth->is_legacy( $plack_request ) ) {
               ...
           }

   basic_clientcredentials($plack_request)
       Returns Hash reference if passed Plack::Request object has client credentials in Authorization header.

           my $basic_clientcredentials = $meth->basic_credentials( $plack_request );
           if( defined($basic_clientcredentials) ){
               my $client_id =     $basic_clientcredentials->{client_id};
               my $client_secret = $basic_clientcredentials->{client_secret};
           }

Name

       OAuth::Lite2::ParamMethod::AuthHeader - builder/parser for OAuth 2.0 AuthHeader type of parameter

See Also

       OAuth::Lite2::ParamMethods OAuth::Lite2::ParamMethod OAuth::Lite2::ParamMethod::FormEncodedBody
       OAuth::Lite2::ParamMethod::URIQueryParameter

Synopsis

           my $meth = OAuth::Lite2::ParamMethod::AuthHeader->new;

           # server side
           if ($meth->match( $plack_request )) {
               my ($token, $params) = $meth->parse( $plack_request );
           }

           # client side
           my $http_req = $meth->request_builder(...);

See Also