textmagic / textmagic-rest-go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TextMagic

Google Go SMS API Client

This package includes functionality for accessing the the TextMagic SMS gateway in Go via the REST API.

Installation

go get -u github.com/textmagic/textmagic-rest-go

Usage

Create a new client with your username and access token:

c := NewClient(clientUser, clientToken)

// Get the active user
u, err := c.GetUser()

if err != nil {
    // handle error
}

fmt.Printf("My user ID is: %d\n", u.ID)

The Params type provides a friendly interface for setting request data:

newListID := 123
p := NewParams("lists", newListID)
p.Set("firstName", "John")
p.Set("lastName", "Smith")

c, err := client.UpdateContact(321, p)

License

The gem is available as open source under the terms of the MIT License.

About


Languages

Language:Go 100.0%