| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Net::OAuth::ProtectedResourceRequest; |
|
2
|
6
|
|
|
6
|
|
232317
|
use warnings; |
|
|
6
|
|
|
|
|
16
|
|
|
|
6
|
|
|
|
|
422
|
|
|
3
|
6
|
|
|
6
|
|
41
|
use strict; |
|
|
6
|
|
|
|
|
11
|
|
|
|
6
|
|
|
|
|
247
|
|
|
4
|
6
|
|
|
6
|
|
40
|
use base 'Net::OAuth::Request'; |
|
|
6
|
|
|
|
|
11
|
|
|
|
6
|
|
|
|
|
2126
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
__PACKAGE__->add_required_message_params(qw/token/); |
|
7
|
|
|
|
|
|
|
__PACKAGE__->add_required_api_params(qw/token_secret/); |
|
8
|
28
|
|
|
28
|
0
|
149
|
sub allow_extra_params {1} |
|
9
|
26
|
|
|
26
|
0
|
78
|
sub sign_message {1} |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Net::OAuth::ProtectedResourceRequest - An OAuth protocol request for a Protected Resource |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
L<Net::OAuth>, L<http://oauth.net> |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 AUTHOR |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Originally by Keith Grennan <kgrennan@cpan.org> |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Currently maintained by Robert Rothenberg <rrwo@cpan.org> |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Copyright 2007-2012, 2024-2025 Keith Grennan |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
|
31
|
|
|
|
|
|
|
under the same terms as Perl itself. |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=cut |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
1; |