line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::OAuth::ProtectedResourceRequest; |
2
|
6
|
|
|
6
|
|
65190
|
use warnings; |
|
6
|
|
|
|
|
15
|
|
|
6
|
|
|
|
|
320
|
|
3
|
6
|
|
|
6
|
|
35
|
use strict; |
|
6
|
|
|
|
|
11
|
|
|
6
|
|
|
|
|
272
|
|
4
|
6
|
|
|
6
|
|
34
|
use base 'Net::OAuth::Request'; |
|
6
|
|
|
|
|
8
|
|
|
6
|
|
|
|
|
1929
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
__PACKAGE__->add_required_message_params(qw/token/); |
7
|
|
|
|
|
|
|
__PACKAGE__->add_required_api_params(qw/token_secret/); |
8
|
28
|
|
|
28
|
0
|
129
|
sub allow_extra_params {1} |
9
|
26
|
|
|
26
|
0
|
270
|
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, L |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 AUTHOR |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Keith Grennan, C<< >> |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Copyright 2007 Keith Grennan, all rights reserved. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
29
|
|
|
|
|
|
|
under the same terms as Perl itself. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=cut |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
1; |