GitLab::API::v4::RESTClient - The HTTP client that does the heavy lifting.
Currently this class uses the HTTP::Tiny manpage and JSON to do its job. This may
change, and the interface may change, so documentation is lacking in order
to not mislead people.
If you do want to customize how this class works then take a look at the
source.
my $req = $api->rest_client->http_tiny_request();
The most recent request arrayref as passed to the HTTP::Tiny manpage.
If this is undef then no request has been made.
my $res = $api->rest_client->http_tiny_response();
The most recent response hashref as passed back from the HTTP::Tiny manpage.
If this is undef and request is defined then no response was received
and you will have encountered an error when making the request
See SUPPORT in the GitLab::API::v4 manpage.
See AUTHORS in the GitLab::API::v4 manpage.
See COPYRIGHT AND LICENSE in the GitLab::API::v4 manpage.
|