repositorypackage
5.0.81+incompatible
Repository: https://github.com/clicksend/clicksend-go.git
Documentation: pkg.go.dev
# README
The official Go library for ClickSend v3 API
This is the official ClickSend SDK. Documentation can be found here.
Requirements
- Sign Up for a free ClickSend account.
- Copy your API key from the API Credentials area.
Installation
Put the package under your project folder and add the following in import:
import "./clicksend"
Documentation
Documentation for our SDK and REST API can be found here.
Documentation For Authorization
BasicAuth
- Type: HTTP basic authentication
Example
auth := context.WithValue(context.Background(), sw.ContextBasicAuth, sw.BasicAuth{
UserName: "username",
Password: "password",
})
r, err := client.Service.Operation(auth, args)