The Plivo Go SDK makes it simpler to integrate communications into your Go applications using the Plivo REST API. Using the SDK, you will be able to make voice calls, send SMS and generate Plivo XML to control your call flows.
- Go >= 1.7.x
You can use the Stable release using the go command.
$ go get github.com/plivo/plivo-go
You can also install by cloning this repository into your GOPATH.
-
In terminal, using the following command, create a new folder called test-plivo-beta.
$ mkdir test-plivo-betaNote: Make sure the new folder is outside your GOPATH.
-
Change your directory to the new folder.
-
Using the following command, initialize a new module:
$ go mod init github.com/plivo/betaYou will see the following return:
$ go mod init github.com/plivo/beta -
Next, create a new go file with the following code:
package main import ( "fmt" "github.com/plivo/plivo-go" ) const authId = "auth_id" const authToken = "auth_token" func main() { testPhloGetter() } func testPhloGetter() { phloClient,err := plivo.NewPhloClient(authId, authToken, &plivo.ClientOptions{}) if err != nil { panic(err) } response, err := phloClient.Phlos.Get("phlo_id") if err != nil { panic(err) } fmt.Printf("Response: %#v\n", response) }
Note: Make sure you enter your
auth_idandauth_tokenbefore you initialize the code. -
Run the following command to build the packages:
$ go buildA file named go.mod will be generated.
-
Open go.mod using the command
vim go.modand edit the plivo-go version to the beta version you want to download.Note: You can see the full list of releases here.
For example, change
github.com/plivo/plivo-go v4.0.5+incompatibleto
github.com/plivo/plivo-go v4.0.6-beta1 -
Once done, save the go.mod.
-
Run go build to build the packages.
go.mod will be updated with the beta version.
You can now use the features available in the Beta branch.
To make the API requests, you need to create a Client and provide it with authentication credentials (which can be found at https://manage.plivo.com/dashboard/).
We recommend that you store your credentials in the PLIVO_AUTH_ID and the PLIVO_AUTH_TOKEN environment variables, so as to avoid the possibility of accidentally committing them to source control. If you do this, you can initialise the client with no arguments and it will automatically fetch them from the environment variables:
package main
import "github.com/plivo/plivo-go"
func main() {
client, err := plivo.NewClient("", "", &plivo.ClientOptions{})
if err != nil {
panic(err)
}
}Alternatively, you can specifiy the authentication credentials while initializing the Client.
package main
import "github.com/plivo/plivo-go"
func main() {
client, err := plivo.NewClient("your_auth_id", "your_auth_token", &plivo.ClientOptions{})
if err != nil {
panic(err)
}
}The SDK uses consistent interfaces to create, retrieve, update, delete and list resources. The pattern followed is as follows:
client.Resources.Create(Params{}) // Create
client.Resources.Get(Id) // Get
client.Resources.Update(Id, Params{}) // Update
client.Resources.Delete(Id) // Delete
client.Resources.List() // List all resources, max 20 at a timeUsing client.Resources.List() would list the first 20 resources by default (which is the first page, with limit as 20, and offset as 0). To get more, you will have to use limit and offset to get the second page of resources.
package main
import "github.com/plivo/plivo-go"
func main() {
client, err := plivo.NewClient("", "", &plivo.ClientOptions{})
if err != nil {
panic(err)
}
client.Messages.Create(plivo.MessageCreateParams{
Src: "the_source_number",
Dst: "the_destination_number",
Text: "Hello, world!",
})
}package main
import "github.com/plivo/plivo-go"
func main() {
client, err := plivo.NewClient("", "", &plivo.ClientOptions{})
if err != nil {
panic(err)
}
client.Calls.Create(plivo.CallCreateParams{
From: "the_source_number",
To: "the_destination_number",
AnswerURL: "http://answer.url",
})
}package main
import (
"fmt"
"log"
"github.com/plivo/plivo-go"
)
func main() {
client, err := plivo.NewClient("authId", "authToken", &plivo.ClientOptions{})
if err != nil {
log.Fatalf("plivo.NewClient() failed: %s", err.Error())
}
resp, err := client.Lookup.Get("<insert-number-here>", plivo.LookupParams{})
if err != nil {
if respErr, ok := err.(*plivo.LookupError); ok {
fmt.Printf("API ID: %s\nError Code: %d\nMessage: %s\n",
respErr.ApiID, respErr.ErrorCode, respErr.Message)
return
}
log.Fatalf("client.Lookup.Get() failed: %s", err.Error())
}
fmt.Printf("%+v\n", resp)
}package main
import "github.com/plivo/plivo-go/plivo/xml"
func main() {
println(xml.ResponseElement{
Contents: []interface{}{
new(xml.SpeakElement).SetContents("Hello, world!"),
},
}.String())
}This generates the following XML:
<Response>
<Speak>Hello, world!</Speak>
</Response>package main
import (
"fmt"
"plivo-go"
)
// Initialize the following params with corresponding values to trigger resources
const authId = "auth_id"
const authToken = "auth_token"
const phloId = "phlo_id"
// with payload in request
func main() {
testPhloRunWithParams()
}
func testPhloRunWithParams() {
phloClient,err := plivo.NewPhloClient(authId, authToken, &plivo.ClientOptions{})
if err != nil {
panic(err)
}
phloGet, err := phloClient.Phlos.Get(phloId)
if err != nil {
panic(err)
}
//pass corresponding from and to values
type params map[string]interface{}
response, err := phloGet.Run(params{
"from": "111111111",
"to": "2222222222",
})
if (err != nil) {
println(err)
}
fmt.Printf("Response: %#v\n", response)
}Refer to the Plivo API Reference for more examples. Also refer to the guide to setting up dev environment on Plivo Developers Portal to setup a simple Go server & use it to test out your integration in under 5 minutes.
Report any feedback or problems with this version by opening an issue on Github.

