Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
Net /
Twitter /
[ HOME SHELL ]
Name
Size
Permission
Action
Manual
[ DIR ]
drwxr-xr-x
Role
[ DIR ]
drwxr-xr-x
API.pm
9.77
KB
-rw-r--r--
Core.pm
13.2
KB
-rw-r--r--
Error.pm
6.51
KB
-rw-r--r--
OAuth.pm
1.72
KB
-rw-r--r--
Search.pm
3.02
KB
-rw-r--r--
Types.pm
380
B
-rw-r--r--
WrappedResult.pm
2.75
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : OAuth.pm
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<Net::Twitter> with the C<Legacy> and C<OAuth> traits applied. It is provided as a transparent backwards compatibility layer for earlier versions of Net::Twitter::OAuth which subclassed Net::Twitter. See L<Net::Twitter> and L<Net::Twitter::Role::OAuth> for full documentation. =head1 DEPRECATION NOTICE This module is deprecated. Use L<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/]); =head1 METHODS =over 4 =item new Creates a C<Net::Twitter> object with the C<Legacy> and C<OAuth> traits. See L<Net::Twitter/new> for C<new> options. =back =head1 SEE ALSO L<Net::Twitter>, L<Net::Twitter::Role::OAuth> =head1 AUTHORS Marc Mims <marc@questright.com> Tatsuhiko Miyagawa <miyagawa@bulknews.net> =head1 LICENSE This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut
Close