| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Net::OAuth::RequestTokenResponse; |
|
2
|
2
|
|
|
2
|
|
1601
|
use warnings; |
|
|
2
|
|
|
|
|
5
|
|
|
|
2
|
|
|
|
|
166
|
|
|
3
|
2
|
|
|
2
|
|
12
|
use strict; |
|
|
2
|
|
|
|
|
4
|
|
|
|
2
|
|
|
|
|
96
|
|
|
4
|
2
|
|
|
2
|
|
14
|
use base 'Net::OAuth::Response'; |
|
|
2
|
|
|
|
|
4
|
|
|
|
2
|
|
|
|
|
832
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
__PACKAGE__->add_required_message_params(qw/token_secret/); |
|
7
|
4
|
|
|
4
|
0
|
25
|
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<Net::OAuth>, L<http://oauth.net> |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 AUTHOR |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Originally by Keith Grennan <kgrennan@cpan.org> |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Currently maintained by Robert Rothenberg <rrwo@cpan.org> |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
Copyright 2007-2012, 2024-2025 Keith Grennan |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
|
28
|
|
|
|
|
|
|
under the same terms as Perl itself. |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=cut |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
1; |