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 /
Role /
[ HOME SHELL ]
Name
Size
Permission
Action
API
[ DIR ]
drwxr-xr-x
AppAuth.pm
4.1
KB
-rw-r--r--
AutoCursor.pm
5.25
KB
-rw-r--r--
InflateObjects.pm
3.94
KB
-rw-r--r--
Legacy.pm
3.75
KB
-rw-r--r--
OAuth.pm
14.69
KB
-rw-r--r--
RateLimit.pm
5.54
KB
-rw-r--r--
RetryOnError.pm
3.47
KB
-rw-r--r--
SimulateCursors.pm
1.7
KB
-rw-r--r--
WrapError.pm
4.46
KB
-rw-r--r--
WrapResult.pm
1.53
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : WrapResult.pm
package Net::Twitter::Role::WrapResult; $Net::Twitter::Role::WrapResult::VERSION = '4.01043'; use Moose::Role; use Net::Twitter::WrappedResult; requires '_parse_result'; around _parse_result => sub { my ( $next, $self ) = splice @_, 0, 2; my $http_response = $_[0]; my $result = $self->$next(@_); return Net::Twitter::WrappedResult->new( result => $result, http_response => $http_response, ); }; no Moose::Role; 1; __END__ =head1 NAME Net::Twitter::Role::WrapResult - Wrap Twitter API response and HTTP Response =head1 VERSION version 4.01043 =head1 SYNOPSIS use Net::Twitter; my $nt = Net::Twitter->new( traits => [ qw/API::RESTv1_1 WrapResult/ ], %other_new_options, ); my $r = $nt->verify_credentials; my $http_response = $r->http_response; my $twitter_result = $r->result; my $rate_limit_remaining = $r->rate_limit_remaining; =head1 DESCRIPTION Normally, Net::Twitter API methods return the decoded JSON body from the HTTP response. Some useful information, notably rate limit information, is included in HTTP response headers. With this role applied, API methods will return a L<Net::Twitter::WrappedResult> object that includes both the HTTP response and the decoded JSON response body. See L<Net::Twitter::WrappedResult> for details. =head1 AUTHOR Marc Mims <marc@questright.com> =head1 COPYRIGHT Copyright (c) 2016 Marc Mims =head1 LICENSE This library is free software and may be distributed under the same terms as perl itself. =cut
Close