You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use strict;
use warnings;
use 5.010;
use Data::Dumper qw(Dumper);
my $access_token = shift or die "Usage: $0 ACCESS_TOKEN\n";
use Net::GitHub;
my $gh = Net::GitHub->new(
version => 3,
access_token => $access_token,
);
my @issues = $gh->issue->repos_issues;
Use of uninitialized value in concatenation (.) or string at /usr/share/perl5/Net/GitHub/V3/Issues.pm line 72.
Use of uninitialized value in concatenation (.) or string at /usr/share/perl5/Net/GitHub/V3/Issues.pm line 72.
Not Found at /usr/share/perl5/Net/GitHub/V3/Issues.pm line 45.
The text was updated successfully, but these errors were encountered:
$gh->set_default_user_repo('fayland', 'perl-net-github'); # take effects for all $gh->
$issue->set_default_user_repo('fayland', 'perl-net-github'); # only take effect to $gh->issue
The text was updated successfully, but these errors were encountered: