| Pithub::Repos::Keys(3pm) | User Contributed Perl Documentation | Pithub::Repos::Keys(3pm) |
Pithub::Repos::Keys - Github v3 Repo Keys API
version 0.01041
POST /repos/:user/:repo/keys
Examples:
my $k = Pithub::Repos::Keys->new;
my $result = $k->create(
user => 'plu',
repo => 'Pithub',
data => {
title => 'some key',
key => 'ssh-rsa AAA...',
},
);
DELETE /repos/:user/:repo/keys/:id
Examples:
my $k = Pithub::Repos::Keys->new;
my $result = $k->delete(
user => 'plu',
repo => 'Pithub',
key_id => 1,
);
GET /repos/:user/:repo/keys/:id
Examples:
my $k = Pithub::Repos::Keys->new;
my $result = $k->get(
user => 'plu',
repo => 'Pithub',
key_id => 1,
);
GET /repos/:user/:repo/keys
Examples:
my $k = Pithub::Repos::Keys->new;
my $result = $k->list(
user => 'plu',
repo => 'Pithub',
);
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.
| 2023-09-02 | perl v5.36.0 |