NAME
Net::OAuth::LP::Client - Launchpad.net Client routines
SYNOPSIS
use Net::OAuth::LP::Client;
my $lp = Net::OAuth::LP::Client->new;
$lp->login_with_creds;
ATTRIBUTES
json
A Mojo::JSON object.
METHODS
login_with_creds
use Net::OAuth::LP::Client;
my $lp = Net::OAuth::LP::Client->new;
$lp->consumer_key('my-lp-app');
# Authorize yourself
$lp->login_with_creds;
get
Performs a HTTP GET request for a particular resource.
post
Performs a HTTP POST request for a resource.
update
Performs a HTTP PATCH request to update a resource.
AUTHOR
Adam Stokes, <adamjs at cpan.org>
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"
COPYRIGHT
Copyright 2013-2014 Adam Stokes
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.