package Net::Twitter::OAuth; $Net::Twitter::OAuth::VERSION = '4.01043'; use Moose; extends 'Net::Twitter::Core'; with map "Net::Twitter::Role::$_", qw/Legacy OAuth/; no Moose; __PACKAGE__->meta->make_immutable; 1; __END__ =head1 NAME Net::Twitter::OAuth - Net::Twitter with 'Legacy' and 'OAuth' roles for backwards compatibility =head1 VERSION version 4.01043 =head1 SYNOPSIS use Net::Twitter; my $nt = Net::Twitter::OAuth->new(consumer_key => $key, consumer_secret => $secret); =head1 DESCRIPTION This module simply creates an instance of C with the C and C traits applied. It is provided as a transparent backwards compatibility layer for earlier versions of Net::Twitter::OAuth which subclassed Net::Twitter. See L and L for full documentation. =head1 DEPRECATION NOTICE This module is deprecated. Use L 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/]); =head1 METHODS =over 4 =item new Creates a C object with the C and C traits. See L for C options. =back =head1 SEE ALSO L, L =head1 AUTHORS Marc Mims Tatsuhiko Miyagawa =head1 LICENSE This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut