![]() |
![]()
| ![]() |
![]()
NAMENet::Twitter::OAuth - Net::Twitter with 'Legacy' and 'OAuth' roles for backwards compatibility VERSIONversion 4.01043 SYNOPSISuse Net::Twitter; my $nt = Net::Twitter::OAuth->new(consumer_key => $key, consumer_secret => $secret); DESCRIPTIONThis module simply creates an instance of "Net::Twitter" with the "Legacy" and "OAuth" traits applied. It is provided as a transparent backwards compatibility layer for earlier versions of Net::Twitter::OAuth which subclassed Net::Twitter. See Net::Twitter and Net::Twitter::Role::OAuth for full documentation. DEPRECATION NOTICEThis module is deprecated. Use Net::Twitter instead. use Net::Twitter; # Just the REST API; exceptions thrown on error $nt = Net::Twitter->new(traits => [qw/API::RESTv1_1 OAuth/]); # Just the REST API; errors wrapped - use $nt->get_error $nt = Net::Twitter->new(traits => [qw/API::RESTv1_1 WrapError/]); # Or, for code that uses legacy Net::Twitter idioms $nt = Net::Twitter->new(traits => [qw/Legacy OAuth/]); METHODS
SEE ALSONet::Twitter, Net::Twitter::Role::OAuth AUTHORSMarc Mims <marc@questright.com> Tatsuhiko Miyagawa <miyagawa@bulknews.net> LICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|