Git Product home page Git Product logo

createsend-go's Introduction

createsend-go

createsend-go is a Go library for accessing the Campaign Monitor API.

This is an unofficial library that is not affiliated with Campaign Monitor. Official libraries are available at github.com/campaignmonitor.

Documentation: https://sourcegraph.com/github.com/sourcegraph/createsend-go

Build Status Sourcegraph

Example usage

package createsend_test

import (
	"fmt"
	"github.com/sourcegraph/createsend-go/createsend"
	"net/http"
	"os"
)

func Example() {
	apiKey := os.Getenv("API_KEY")
	if apiKey == "" {
		fmt.Fprintf(os.Stderr, "You must set your Campaign Monitor API key in the API_KEY environment variable to run example_test.go. (Skipping.)\n")
		os.Exit(0)
	}

	authClient := &http.Client{
		Transport: &createsend.APIKeyAuthTransport{APIKey: apiKey},
	}

	c := createsend.NewAPIClient(authClient)
	clients, err := c.ListClients()
	if err != nil {
		fmt.Printf("Error listing clients: %s\n", err)
		os.Exit(1)
	}
	fmt.Printf("Found %d clients.\n", len(clients))
	for _, client := range clients {
		fmt.Printf(" - %s (ID: [%d-char ID])\n", client.Name, len(client.ClientID))
	}

	// This output will be different for each account.

	// output:
	// Found 1 clients.
	//  - Sourcegraph (ID: [32-char ID])
}

See the createsend/example_test.go file for the full source.

Running the tests

To run the tests:

go test ./createsend

To run the included example (in createsend/example_test.go), set your Campaign Monitor API key in the API_KEY environment variable (available in Account Settings).

API_KEY=your-api-key go test ./createsend

Acknowledgements

The library's architecture and testing code are adapted from go-github, created by Will Norris.

createsend-go's People

Contributors

joffotron avatar kimgressens avatar sqs avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.