Skip to content
This repository has been archived by the owner on Mar 12, 2019. It is now read-only.
/ twilio-go Public archive
forked from marcuswestin/twilio-go

Twilio Go library

Notifications You must be signed in to change notification settings

asappinc/twilio-go

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 

Repository files navigation

twilio-go

Usage

const sid = "AC123"
const token = "456bef"

client := twilio.CreateClient(sid, token, nil)
msg, err := client.Messages.SendMessage("+19177460767", "+19253240627", "Sent via go :) ✓", nil)

Or pass the values yourself:

params := url.Values{
    "From": {"+19177460767"},
    "To":   {"+19253240627"},
    "Body": {"Sent via go :) ✓"},
}
msg, err := client.Messages.Create(params)

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%