lyhiving/dnspod_api

The DNSPod User API is restricted to individual users, making it easier and more flexible for users to manage their own domain names and records.

3.0.5 2019-12-04 09:15 UTC

This package is auto-updated.

Last update: 2024-04-15 18:37:47 UTC


README

DNSPod.png

Dnspod_API

The DNSPod User API OR DNSPod中文文档 is restricted to individual users, making it easier and more flexible for users to manage their own domain names and records.

dnspod

Need to cooperate with Curl extension

Installation

Use Composer to install the library. Of course, You can go to Packagist to view.

    $ composer require lyhiving/dnspod_api

Initialization parameter

  • Sample:
    require_once dirname(__FILE__) . '/vendor/autoload.php';
    use dnspod_api\Dnspod;
    $uid = 12345;
    $token = X12345;
    $DP = new Dnspod($uid, $token);

Add or modify records

  • Sample:
    $domain = 'example.com';
    $value = array(
        '255.255.255.1',
        '255.255.255.2',
        '255.255.255.3',
        );
    $name = 'www';
    $type = 'A';
    $DP->Records($domain, $value, $name, $type, true);

Copy A record

  • Sample:
    $domain = 'example.com';
    $DP->copyArecord($domain);

Get domain information

  • Sample:
    $copyDomain = 'google.com';
    $toDomain = 'example.com';
    echo $DP->getDomainInfo($copyDomain, $toDomain);

Get a list of records

  • Sample:
    $domain = 'example.com';
    echo $DP->getRecordList($domain);

Get details of batch tasks

  • Sample:
    $job_id = 'j12345';
    echo $DP->getBatchDetail($job_id);

Add a single record

  • Sample:
    $domain = 'example.com';
    $name = 'www';
    $value = '255.255.255.0';
    $type = 'A';
    echo $DP->addRecord($domain, $name, $value, $type);

Add records in bulk

  • Sample:
    $domain_id = '12345';
    $record[0] = array('name'=>'WWW', 'type'=>'A', 'value'='255.255.255.0', 'mx'=>1);
    echo $DP->batchAddRecord($domain_id, $record);

Modify record

  • Sample:
    $domain = 'example.com';
    $record_id = 'E12345';
    $name = 'WWW2';
    $value = '255.255.255.0';
    $type = 'A';
    $mx = 1;
    echo $DP->recordModify($domain, $record_id, $name, $value, $type, $mx);

Modify record

  • Sample:
    $domain = 'example.com';
    $record_id = 'E12345';
    echo $DP->recordRemove($domain, $record_id);

Other functions

  • Sample:
    //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 = 'share@old.com';
    echo $DP->shareRemove($domain, $share_email);

Original author

weibo: yakeing

Modify by lyhiving