| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Net::OAuth::XauthAccessTokenRequest; |
|
2
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
50
|
|
|
3
|
1
|
|
|
1
|
|
4
|
use strict; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
19
|
|
|
4
|
1
|
|
|
1
|
|
4
|
use base 'Net::OAuth::Request'; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
374
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
__PACKAGE__->add_extension_param_pattern(qr/x_auth_/); |
|
7
|
|
|
|
|
|
|
__PACKAGE__->add_required_message_params(qw/x_auth_username x_auth_password x_auth_mode/); |
|
8
|
2
|
|
|
2
|
0
|
5
|
sub allow_extra_params {0} |
|
9
|
2
|
|
|
2
|
0
|
5
|
sub sign_message {1} |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Net::OAuth::xAuthAccessTokenRequest - xAuth extension |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
L<http://apiwiki.twitter.com/Twitter-REST-API-Method:-oauth-access_token-for-xAuth> |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 AUTHOR |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Originally by Keith Grennan <kgrennan@cpan.org> |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Currently maintained by Robert Rothenberg <rrwo@cpan.org> |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 CONTRIBUTORS |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Masayoshi Sekimura |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Simon Wistow |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
Copyright 2007-2012, 2024-2025 Keith Grennan |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
|
36
|
|
|
|
|
|
|
under the same terms as Perl itself. |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
1; |