-
03 Oct 2022 03:23:11 UTC
- Distribution: Net-GitHub
- Module version: 1.05
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues
- Testers (152 / 0 / 0)
- Kwalitee
Bus factor: 1- 28.39% Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (43.71KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Fayland Lam, C<< <fayland at gmail.com> >>
-
Alan Berndt
-
Alex Muntada
-
Alex Vandiver
-
brian d foy
-
c9s
-
Chris Nehren
-
Christine Spang
-
Chris Williams
-
Danijel Tasov
-
David Golden
-
David Precious
-
fayland
-
Finn Smith
-
franck cuny
-
Graham Knop
-
Grant McLean
-
gregor herrmann
-
Harald Jörg
-
hiroraba
-
Hristo Dragolov
-
Ioan Rogers
-
Jason Dorweiller
-
jddorweiler
-
Jesse Luehrs
-
Jesse Vincent
-
JJ Merelo
-
Johannes Kilian
-
John 'Warthog9' Hawley
-
Jonathan Gopel
-
J.R. Mash
-
Kevin Falcone
-
Kirk Kimmel
-
Leigh Hart
-
Lubomir Rintel
-
Makoto Sasaki
-
Michael G. Schwern
-
mikegrb
-
mschilli
-
nebulous
-
Neil Bowers
-
Nicolas R
-
PF4Public
-
sillymoose
-
sunnavy
-
Tim Vroom
-
Todd Rinaldo
-
unknown
-
Vincent Lequertier
-
Will Orr
-
Zak Wilcox
-
積丹尼 Dan Jacobson
NAME
Net::GitHub - Perl Interface for github.com
SYNOPSIS
use Net::GitHub; my $github = Net::GitHub->new( # Net::GitHub::V3 login => 'fayland', pass => 'secret' ); # If you use two factor authentication you can pass in the OTP. Do # note that OTPs expire quickly and you will need to generate an oauth # token to do anything non-trivial. my $github = Net::GitHub->new( login => 'fayland', pass => 'secret', otp => '123456', ); # Pass api_url for GitHub Enterprise installations. Do not include a # trailing slash my $github = Net::GitHub->new( # Net::GitHub::V3 login => 'fayland', pass => 'secret', api_url => 'https://gits.aresweet.com/api/v3' ); # suggested # use OAuth to create token with user/pass my $github = Net::GitHub->new( # Net::GitHub::V3 access_token => $token ); # L<Net::GitHub::V3::Users> my $user = $github->user->show('nothingmuch'); $github->user->update( bio => 'Just Another Perl Programmer' ); # L<Net::GitHub::V3::Repos> my @repos = $github->repos->list; my $rp = $github->repos->create( { "name" => "Hello-World", "description" => "This is your first repo", "homepage" => "https://github.com" } );DESCRIPTION
http://github.com is a popular git host.
This distribution provides easy methods to access GitHub via their APIs.
Check http://developer.github.com/ for more details of the GitHub APIs.
Read Net::GitHub::V3 for API usage.
Read Net::GitHub::V4 for GitHub GraphQL API.
If you prefer object oriented way, Pithub is 'There is more than one way to do it'.
FAQ
create access_token for Non-Web Application
my $gh = Net::GitHub::V3->new( login => 'fayland', pass => 'secret' ); my $oauth = $gh->oauth; my $o = $oauth->create_authorization( { scopes => ['user', 'public_repo', 'repo', 'gist'], # just ['public_repo'] note => 'test purpose', } ); print $o->{token};after create the token, you can use it without your password publicly written
my $github = Net::GitHub->new( access_token => $token, # from above );
Git
http://github.com/fayland/perl-net-github/
SEE ALSO
AUTHOR
Fayland Lam,
<fayland at gmail.com>Everyone who is listed in Changes.
COPYRIGHT & LICENSE
Copyright 2009-2012 Fayland Lam all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Module Install Instructions
To install Net::GitHub, copy and paste the appropriate command in to your terminal.
cpanm Net::GitHubperl -MCPAN -e shell install Net::GitHubFor more information on module installation, please visit the detailed CPAN module installation guide.
Keyboard Shortcuts
| Global | |
|---|---|
| s | Focus search bar |
| ? | Bring up this help dialog |
| GitHub | |
|---|---|
| g p | Go to pull requests |
| g i | go to github issues (only if github is preferred repository) |
| POD | |
|---|---|
| g a | Go to author |
| g c | Go to changes |
| g i | Go to issues |
| g d | Go to dist |
| g r | Go to repository/SCM |
| g s | Go to source |
| g b | Go to file browse |
| Search terms | |
|---|---|
| module: (e.g. module:Plugin) | |
| distribution: (e.g. distribution:Dancer auth) | |
| author: (e.g. author:SONGMU Redis) | |
| version: (e.g. version:1.00) |

