OAuth::Lite2::Formatter::XML - OAuth 2.0 XML formatters store
Contents
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::Formatter::XML(3pm)
Description
DEPRECATED. OAuth 2.0 XML formatter.
Methods
name
Accessor for name of this format, "xml".
type
Accessor for content-type of this format, "application/xml".
format($object)
my $xml_string = $formatter->format( $obj );
parse($xml_string)
my $obj = $formatter->parse( $xml_string );
Name
OAuth::Lite2::Formatter::XML - OAuth 2.0 XML formatters store
See Also
OAuth::Lite2::Formatter OAuth::Lite2::Formatters OAuth::Lite2::Formatter::JSON
OAuth::Lite2::Formatter::FormURLEncoded
Synopsis
my $formatter = OAuth::Lite2::Formatter::XML->new;
my $obj = $formatter->parse( $string );
$string = $formatter->format( $obj );
