The Go language implementation of SDK for integration with CDEK
To install this package, you need to install Go and setup your Go workspace on your computer. The simplest way to install the library is to run:
$ go get github.com/vseinstrumentiru/cdek
With Go module support (Go 1.11+), simply import "github.com/vseinstrumentiru/cdek"
in
your source code and go [build|run|test]
will automatically download the
necessary dependencies (Go modules
ref).
- See godoc for package and API descriptions and examples.
You cat get test clientAccount
and clientSecurePassword
from the official CDEK documentation
import "github.com/vseinstrumentiru/cdek"
...
client := cdek.NewClient("https://integration.edu.cdek.ru/").
SetAuth(clientAccount, clientSecurePassword)
cities, err := client.GetCities(map[cdek.CityFilter]string{
cdek.CityFilterPage: "1",
})