1. Go to this page and download the library: Download tubehosting/tubephp-api library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
tubehosting / tubephp-api example snippets
t
use TubeAPI\Objects;
use TubeAPI\Exceptions;
authentication, but this is not recommended, please use the api key instead (scroll down for more information about this)
$mail = "[email protected]";
try {
//login using the credentials of an existing tube-hosting.de account (the login returns a new JWTTokenResponse)
$user = Objects\User::login(new Objects\AuthenticationLoginData($mail, $password));
$vps = Objects\VPS::getServerById(488); //get a VPS by the id, returns new VPS object
$vpsStatus = Objects\VPS::getServerStatusById(488); //get status information of VPS, returns new VpsStatus Object
//print different information about the VPS, provided in the VPS and VpsStatus Object
print "Overview ".$vps->getVpsType()." - ".$vps->getName() . "\n";
print "Node: " . $vps->getNodeId() . "\n";
print "IP: " . $vps->getPrimaryIPv4()->getIpv4()->getIpv4() ."\n";
print "OS: " . $vps->getOsDisplayName() . "\n";
print " - " . $vps->getCoreCount() . " CPU Cores, Usage: ".(int)($vpsStatus->getCpu()*100) . "%\n";
print " - " . number_format($vpsStatus->getMem() / 1048576) . "/". number_format($vps->getMemory()) ." GB RAM\n";
print " - " . $vps->getDiskType() ." -> " . number_format($vps->getDiskSpace()/1024) ." GB\n";
print "Price: €" . $vps->getPrice()/100 . " (".$vps->getPriceType().")\n";
print "Bought on: " . $vps->getStartDate() . "\n";
print "Paid until: " . $vps->getRuntime() . "\n";
}catch (Exceptions\RequestException $e) {
print $e->getMessage() . "\n";
//you can also get more detailed information (like http status code, response, curl_getInfo, etc.)
//for example with the http status code:
print "Status code: " . $e->getHttpStatusCode() . "\n";
}