1. Go to this page and download the library: Download lyhiving/dnspod_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/ */
lyhiving / dnspod_api example snippets
use dnspod_api\Dnspod;
$uid = 12345;
$token = X12345;
$DP = new Dnspod($uid, $token);
//Get the API version number
echo $DP->getVersion();
//Get the level allowed line
$domain = 'example.com';
echo $DP->getRecordLine($domain);
//Change API Region to Global Network And
$DP->setRegion('global');
//Change API Region to China Network
$DP->setRegion('cn');
//Get a list of domain names
echo $DP->getDomainList();
//Construct a new record table
$name = 'example.com';
$type = 'A';
$value = '255.255.255.0';
$DP->newRecords($name, $type, $value);
//Remove share record
$domain = 'example.com';
$share_email = '[email protected]';
echo $DP->shareRemove($domain, $share_email);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.