line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::OpenMicroBlogging::UserAuthRequest; |
2
|
1
|
|
|
1
|
|
36067
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
34
|
|
3
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
41
|
|
4
|
1
|
|
|
1
|
|
6
|
use base qw/Net::OpenMicroBlogging::Message Net::OAuth::UserAuthRequest/; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
918
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
__PACKAGE__->init_omb_message; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
__PACKAGE__->add_required_message_params(qw/ |
9
|
|
|
|
|
|
|
omb_version |
10
|
|
|
|
|
|
|
omb_listener |
11
|
|
|
|
|
|
|
omb_listenee |
12
|
|
|
|
|
|
|
omb_listenee_profile |
13
|
|
|
|
|
|
|
omb_listenee_nickname |
14
|
|
|
|
|
|
|
omb_listenee_license |
15
|
|
|
|
|
|
|
/); |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__PACKAGE__->add_optional_message_params(qw/ |
18
|
|
|
|
|
|
|
omb_listenee_fullname |
19
|
|
|
|
|
|
|
omb_listenee_homepage |
20
|
|
|
|
|
|
|
omb_listenee_bio |
21
|
|
|
|
|
|
|
omb_listenee_location |
22
|
|
|
|
|
|
|
omb_listenee_avatar |
23
|
|
|
|
|
|
|
/); |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 NAME |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Net::OpenMicroBlogging::UserAuthRequest - request for OpenMicroBlogging User Authentication |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 SEE ALSO |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
L, L |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 AUTHOR |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Keith Grennan, C<< >> |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Copyright 2007 Keith Grennan, all rights reserved. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
42
|
|
|
|
|
|
|
under the same terms as Perl itself. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=cut |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
1; |