Net::OpenMicroBlogging::UserAuthRequest - request for OpenMicroBlogging User Authentication


Net-OpenMicroBlogging documentation Contained in the Net-OpenMicroBlogging distribution.

Index


Code Index:

NAME

Top

Net::OpenMicroBlogging::UserAuthRequest - request for OpenMicroBlogging User Authentication

SEE ALSO

Top

Net::OpenMicroBlogging, http://openmicroblogging.org

AUTHOR

Top

Keith Grennan, <kgrennan at cpan.org>

COPYRIGHT & LICENSE

Top


Net-OpenMicroBlogging documentation Contained in the Net-OpenMicroBlogging distribution.

package Net::OpenMicroBlogging::UserAuthRequest;
use warnings;
use strict;
use base qw/Net::OpenMicroBlogging::Message Net::OAuth::UserAuthRequest/;

__PACKAGE__->init_omb_message;

__PACKAGE__->add_required_message_params(qw/
                                         omb_version
                                         omb_listener
                                         omb_listenee
                                         omb_listenee_profile
                                         omb_listenee_nickname
                                         omb_listenee_license
                                         /);

__PACKAGE__->add_optional_message_params(qw/
                                         omb_listenee_fullname
                                         omb_listenee_homepage
                                         omb_listenee_bio
                                         omb_listenee_location
                                         omb_listenee_avatar
                                         /);

1;