Pithub::Repos::Keys(3) Github v3 Repo Keys API

VERSION

version 0.01033

METHODS

create

  • Create

        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

  • Delete

        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

  • Get

        GET /repos/:user/:repo/keys/:id
    

    Examples:

        my $k = Pithub::Repos::Keys->new;
        my $result = $k->get(
            user   => 'plu',
            repo   => 'Pithub',
            key_id => 1,
        );
    

list

  • List

        GET /repos/:user/:repo/keys
    

    Examples:

        my $k = Pithub::Repos::Keys->new;
        my $result = $k->list(
            user => 'plu',
            repo => 'Pithub',
        );
    

AUTHOR

Johannes Plunien <[email protected]>

COPYRIGHT AND LICENSE

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.