This repo is archived and will not be maintained.
Please check https://github.com/nrdcg/dnspod-go instead.
A Go client for the DNSPod API.
Borrowed from : dnsimple
$ go get github.com/kaelzhang/dnspod-go
This library is a Go client you can use to interact with the DNSPod API. Here are some examples.
package main
import (
"fmt"
"log"
"github.com/kaelzhang/dnspod-go"
)
func main() {
apiToken := "xxxxx"
params := dnspod.CommonParams{LoginToken: apiToken, Format: "json"}
client := dnspod.NewClient(params)
// Get a list of your domains
domains, _, _ := client.Domains.List()
for _, domain := range domains {
fmt.Printf("Domain: %s (id: %d)\n", domain.Name, domain.ID)
}
// Get a list of your domains (with error management)
domains, _, error := client.Domains.List()
if error != nil {
log.Fatalln(error)
}
for _, domain := range domains {
fmt.Printf("Domain: %s (id: %d)\n", domain.Name, domain.ID)
}
// Create a new Domain
newDomain := dnspod.Domain{Name: "example.com"}
domain, _, _ := client.Domains.Create(newDomain)
fmt.Printf("Domain: %s\n (id: %d)", domain.Name, domain.ID)
}
This is Free Software distributed under the MIT license.