Ubuntu Manpages

Net::GitHub::V3::Query

Base Query role for Net::GitHub::V3

    package Net::GitHub::V3::XXX;
    use Moo;
    with 'Net::GitHub::V3::Query';

set Authentication and call API

ATTRIBUTES

Either set access_token from OAuth or login:pass for Basic Authentication

<http://developer.github.com/>

API throttling is enabled by default, set api_throttle to 0 to disable it.
The maximum number of queries allowed per hour. 60 for anonymous users and 5,000 for authenticated users.
The number of requests remaining in the current rate limit window.
The time the current rate limit resets in UTC epoch seconds.

METHODS

Refer Net::GitHub::V3
Calls "query" with "next_url". See Net::GitHub::V3

NG_DEBUG

export NG_DEBUG=1 to view the request URL

NG_DEBUG > 1 to view request/response string

Refer Net::GitHub