
Pithub::Repos::Downloads - Github v3 Repo Downloads API

version 0.01018

POST /repos/:user/:repo/downloads
Examples:
my $d = Pithub::Repos::Downloads->new;
my $result = $d->create(
user => 'plu',
repo => 'Pithub',
data => {
name => 'new_file.jpg',
size => 114034,
description => 'Latest release',
content_type => 'text/plain',
},
);
$d->upload(
result => $result,
file => '/path/to/file',
);
DELETE /repos/:user/:repo/downloads/:id
Examples:
my $d = Pithub::Repos::Downloads->new;
my $result = $d->delete(
user => 'plu',
repo => 'Pithub',
download_id => 1,
);
GET /repos/:user/:repo/downloads/:id
Examples:
my $d = Pithub::Repos::Downloads->new;
my $result = $d->get(
user => 'plu',
repo => 'Pithub',
download_id => 1,
);
GET /repos/:user/:repo/downloads
Examples:
my $d = Pithub::Repos::Downloads->new;
my $result = $d->list(
user => 'plu',
repo => 'Pithub',
);
ua attribute's request method to do a POST request to Amazon S3. It requires the Pithub::Result object of a "create" call to get the necessary data for S3 API call. This method returns an HTTP::Response object directly, not a Pithub::Result object (like all other methods do)! If the upload was successful the status will be 201.
Johannes Plunien <plu@cpan.org>

This software is copyright (c) 2011 by Johannes Plunien.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.