line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::OAuth::YahooAccessTokenRefreshRequest; |
2
|
1
|
|
|
1
|
|
7
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
37
|
|
3
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
38
|
|
4
|
1
|
|
|
1
|
|
6
|
use base 'Net::OAuth::AccessTokenRequest'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
616
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
__PACKAGE__->add_required_message_params(qw/session_handle/); |
7
|
4
|
|
|
4
|
0
|
19
|
sub allow_extra_params {0} |
8
|
4
|
|
|
4
|
0
|
16
|
sub sign_message {1} |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Net::OAuth::YahooAccessTokenRefreshRequest - Yahoo OAuth Extension |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 SEE ALSO |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
L |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 AUTHOR |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Keith Grennan, C<< >> |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 CONTRIBUTORS |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Marc Mims |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Copyright 2010 Keith Grennan, all rights reserved. |
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
|
|
|
|
|
|
|
1; |