GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Pithub::Users::Followers(3) User Contributed Perl Documentation Pithub::Users::Followers(3)

Pithub::Users::Followers - Github v3 User Followers API

version 0.01036

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.

2021-02-08 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.