perl-sdk / WebService::Hexonet::Connector
This module is a connector library for the insanely fast HEXONET Backend API. For further informations visit our homepage and do not hesitate to contact us.
Resources
How to use this module in your project
We have also a demo app available showing how to integrate and use our SDK. See here.
Requirements
- Installed most current version of perl 5
- Installed cpanm (App::cpanminus) as suggested alternative for cpan command
Install from CPAN
# by Module ID (suggested!)
cpanm WebService::Hexonet::Connector
# or by filename
cpanm HEXONET/WebSservice-Hexonet-Connector-v1.12.1.tar.gz
NOTE: I got this only working by sudo'ing these commands. In case you install by filename, please check the release overview for the most current release and use that version instead.
Usage Examples
Please have an eye on our HEXONET Backend API documentation. Here you can find information on available Commands and their response data.
Session based API Communication
use 5.026_000;
use strict;
use warnings;
use WebService::Hexonet::Connector;
my $cl = WebService::Hexonet::Connector::APIClient->new();
$cl->useOTESystem();
$cl->setCredentials("test.user", "test.passw0rd");
$cl->setRemoteIPAddress("1.2.3.4");
my $response = $cl->login();
# in case of 2FA use:
# my $response = $cl->login("12345678");
if ($response->isSuccess()) {
# now the session will be used for communication in background
# instead of the provided credentials
# if you need something to rebuild connection on next page visit,
# so in a frontend-session based environment, please consider
# saveSession and reuseSession methods
# Call a command
my $response = $cl->request(
{
COMMAND => "QueryDomainList",
LIMIT => 5
}
);
# get the result in the format you want
my $res;
$res = $response->getListHash();
$res = $response->getHash();
$res = $response->getPlain();
# get the response code and the response description
my $code = $response->code();
my $description = $response->description();
print "$code $description";
# close Backend API Session
# you may verify the result of the logout procedure
# like for the login procedure above
$r->logout();
}
Sessionless API Communication
use 5.026_000;
use strict;
use warnings;
use WebService::Hexonet::Connector;
my $cl = WebService::Hexonet::Connector::APIClient->new();
$cl->useOTESystem();
$cl->setCredentials("test.user", "test.passw0rd");
$cl->setRemoteIPAddress("1.2.3.4");
# in case of 2FA use:
# $cl->setOTP("12345678")
# Call a command
my $response = $cl->request(
{
COMMAND => "QueryDomainList",
LIMIT => 5
}
);
# get the result in the format you want
my $res;
$res = $response->getListHash();
$res = $response->getHash();
$res = $response->getPlain();
# get the response code and the response description
my $code = $response->code();
my $description = $response->description();
print "$code $description";
Contributing
Please read our development guide for details on our code of conduct, and the process for submitting pull requests to us.
Authors
- Anthony Schneider - development - AnthonySchn
- Kai Schwarz - development - PapaKai
See also the list of contributors who participated in this project.
License
This project is licensed under the MIT License - see the LICENSE file for details.