Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iwanbk/plivogo

Plivo HTTP API Helper Library in Go
https://github.com/iwanbk/plivogo

Last synced: about 1 month ago
JSON representation

Plivo HTTP API Helper Library in Go

Awesome Lists containing this project

README

        

Unofficial and Incomplete Plivo HTTP API Helper Library in Go
## INSTALL
go get github.com/iwanbk/plivogo

## Implemented API
Account
Endpoint
Application

## Example

```go
package main

import (
"github.com/iwanbk/plivogo"
)

func main() {
authId := "AAAA"
authToken := "BBBBBB"

p, _ := plivogo.NewPlivo(AUTH_ID, AUTH_TOKEN)

//get endpoint details
endpoint, _ := p.Endpoint.Get("your_endpoint_id")

}
```

You can also take a look at test files