| Net-OpenMicroBlogging documentation | Contained in the Net-OpenMicroBlogging distribution. |
Net::OpenMicroBlogging::UserAuthRequest - request for OpenMicroBlogging User Authentication
Keith Grennan, <kgrennan at cpan.org>
Copyright 2007 Keith Grennan, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 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;