line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::OAuth::AccessTokenRequest; |
2
|
3
|
|
|
3
|
|
2501
|
use warnings; |
|
3
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
115
|
|
3
|
3
|
|
|
3
|
|
17
|
use strict; |
|
3
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
91
|
|
4
|
3
|
|
|
3
|
|
16
|
use base 'Net::OAuth::Request'; |
|
3
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
3786
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
__PACKAGE__->add_required_message_params(qw/token/); |
7
|
|
|
|
|
|
|
__PACKAGE__->add_required_api_params(qw/token_secret/); |
8
|
4
|
|
|
4
|
0
|
48
|
sub allow_extra_params {0} |
9
|
4
|
|
|
4
|
0
|
16
|
sub sign_message {1} |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Net::OAuth::AccessTokenRequest - An OAuth protocol request for an Access Token |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 SEE ALSO |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
L, L |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 AUTHOR |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Keith Grennan, C<< >> |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
Copyright 2007 Keith Grennan, all rights reserved. |
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; |