Skip to content

ZTO-Express/zopsdk-go

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

中通开放平台SDK(Go版)

参考

中通开放平台SDK

使用方式

go get -u github.com/chiahan1123/zopsdk-go
client, err := zop.NewClient("kfpttestCode", "kfpttestkey==")
if err != nil {
	// handle error
	return
}
params := make(map[string]string)
params["request"] = `[{"partnerCode":"360844819234","companyCode":"GP1551922487","reason":"客户取消"}]`
resp, err := client.Execute(context.Background(), &zop.Request{
    URL:    "http://58.40.16.122:8080/cancelOrder",
    Params: params,
})
if err != nil {
	// handle error
	return
}
fmt.Println(resp)

About

中通开放平台SDK(Go)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%