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::Formatter::Text - OAuth 2.0 text/plain formatters store

Author

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

Description

       DEPRECATED.  OAuth 2.0 text/plain formatter

Methods

name
       Accessor for name of this format, "text".

   type
       Accessor for content-type of this format, "text/plain".

   format($object)
           my $formatted_string = $formatter->format( $obj );

   parse($formatted_string)
           my $obj = $formatter->parse( $formatted_string );

Name

       OAuth::Lite2::Formatter::Text - OAuth 2.0 text/plain formatters store

See Also

       OAuth::Lite2::Formatter OAuth::Lite2::Formatters OAuth::Lite2::Formatter::FormURLEncoded.pm
       OAuth::Lite2::Formatter::JSON OAuth::Lite2::Formatter::XML

Synopsis

           my $formatter = OAuth::Lite2::Formatter::Text->new;
           my $obj = $formatter->parse( $string );
           $string = $formatter->format( $obj );

See Also