NAME
Net::OAuth::LP - Launchpad.net OAuth 1.0
SYNOPSIS
OAuth 1.0a authorization and client for Launchpad.net
use Net::OAuth::LP;
my $lp = Net::OAuth::LP->new;
$lp->consumer_key('my-lp-app');
# Authorize yourself
$lp->login_with_creds;
ATTRIBUTES
Net::OAuth::LP implements the following attributes:
consumer_key
Holds the string that identifies your application.
$lp->consumer_key('my-app-name');
token
Token received from authorized request
token_secret
Token secret received from authorized request
METHODS
new
my $lp = Net::OAuth::LP->new;
login_with_creds
$lp->login_with_creds;
AUTHOR
Adam 'battlemidget' Stokes, <adam.stokes at ubuntu.com>
BUGS
Report bugs to https://github.com/battlemidget/Net-OAuth-LP/issues.
DEVELOPMENT
Repository
http://github.com/battlemidget/Net-OAuth-LP
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Net::OAuth::LP
SEE ALSO
https://launchpad.net/launchpadlib, "Python implementation"
LICENSE AND COPYRIGHT
Copyright 2013 Adam Stokes.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.