The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

cPanel::APIClient::Transport::HTTPSync - Synchronous HTTP transport

SYNOPSIS

my $remote_cp = cPanel::APIClient->create(
    service => 'cpanel',

    transport => [
        'HTTPSync',
        hostname => 'somewhere.out.there',

        # Not for production:
        # tls_verification => 'off',
    ],

    credentials => {
        username => 'johnny',
        password => '$3kr1t',
    },
);

my $resp = $remote_cp->call_uapi( 'Email', 'list_forwarders' );

DESCRIPTION

This transport mechanism implements access to cPanel & WHM’s APIs via synchronous (i.e., blocking) HTTP.

SEE ALSO

cPanel::APIClient::Transport::NetCurlPromiser and cPanel::APIClient::Transport::Mojolicious facilitate sending multiple concurrent API requests.

LICENSE

Copyright 2020 cPanel, L. L. C. All rights reserved. http://cpanel.net

This is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.