Net::OpenMicroBlogging::UserAuthResponse - An OpenMicroBlogging protocol response for user authentication


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

Index


Code Index:

NAME

Top

Net::OpenMicroBlogging::UserAuthResponse - An OpenMicroBlogging protocol response for 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::UserAuthResponse;
use warnings;
use strict;
use base qw(Net::OpenMicroBlogging::Message Net::OAuth::UserAuthResponse);

__PACKAGE__->init_omb_message;

__PACKAGE__->add_required_message_params(qw/
                                         omb_version
                                         omb_listener_nickname
                                         omb_listener_profile
                                         /);

__PACKAGE__->add_optional_message_params(qw/
                                         omb_listener_fullname
                                         omb_listener_homepage
                                         omb_listener_bio
                                         omb_listener_location
                                         omb_listener_avatar
                                         /);

1;