GitLab::API::v4::WWWClient - A client that works against the GitLab web site.
use GitLab::API::v4::WWWClient;
my $client = GitLab::API::v4::WWWClient->new(
url => 'https://git.example.com/',
);
$client->sign_in( $username, $password );
my $res = $client->get( $path );
This class makes it possible to interact with the GitLab web site.
This is the base URL to your GitLab web site.
$client->sign_in( $username, $password );
Signs in the client given the username and password.
my $res = $client->get( $path );
Gets the path and returns the the HTTP::Tiny manpage response hash.
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.
|