line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::OAuth::RequestTokenResponse; |
2
|
2
|
|
|
2
|
|
2130
|
use warnings; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
73
|
|
3
|
2
|
|
|
2
|
|
12
|
use strict; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
75
|
|
4
|
2
|
|
|
2
|
|
12
|
use base 'Net::OAuth::Response'; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
971
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
__PACKAGE__->add_required_message_params(qw/token_secret/); |
7
|
4
|
|
|
4
|
0
|
20
|
sub allow_extra_params {1} |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
Net::OAuth::RequestTokenResponse - An OAuth protocol response for an Request Token |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 SEE ALSO |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
L, L |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 AUTHOR |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Keith Grennan, C<< >> |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Copyright 2007 Keith Grennan, all rights reserved. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
26
|
|
|
|
|
|
|
under the same terms as Perl itself. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=cut |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
1; |