Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/iwanbk/plivogo
- Owner: iwanbk
- Created: 2013-06-27T13:56:28.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2017-02-07T00:28:51.000Z (almost 8 years ago)
- Last Synced: 2024-04-17T00:03:46.176Z (8 months ago)
- Language: Go
- Homepage:
- Size: 158 KB
- Stars: 4
- Watchers: 5
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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 mainimport (
"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