Pithub::Users::Followers - Github v3 User Followers API
- •
- Follow a user
PUT /user/following/:user
Examples:
my $f = Pithub::Users::Followers->new( token => 'b3c62c6' );
my $result = $f->follow( user => 'plu' );
- •
- Check if the authenticated user is following another given user
GET /user/following/:user
Examples:
my $f = Pithub::Users::Followers->new( token => 'b3c62c6' );
my $result = $f->is_following( user => 'rafl' );
if ( $result->is_success ) {
print "plu is following rafl\n";
}
elsif ( $result->code == 404 ) {
print "plu is not following rafl\n";
}
- List a user's followers:
GET /users/:user/followers
Examples:
my $f = Pithub::Users::Followers->new;
my $result = $f->list( user => 'plu' );
- List the authenticated user's followers:
GET /user/followers
Examples:
my $f = Pithub::Users::Followers->new( token => 'b3c62c6' );
my $result = $f->list;
- List who a user is following:
GET /users/:user/following
Examples:
my $f = Pithub::Users::Followers->new;
my $result = $f->list_following( user => 'plu' );
- List who the authenicated user is following:
GET /user/following
Examples:
my $f = Pithub::Users::Followers->new( token => 'b3c62c6' );
my $result = $f->list_following;
- •
- Unfollow a user
DELETE /user/following/:user
Examples:
my $f = Pithub::Users::Followers->new;
my $result = $f->unfollow( user => 'plu' );
Johannes Plunien <plu@cpan.org>
This software is copyright (c) 2011-2019 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.