All Projects → genesor → twiliolo

genesor / twiliolo

Licence: MIT license
Golang API wrapper for Twilio API [WIP]

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to twiliolo

quarantine-bot
WhatsApp bot powered by Twilio API to get through the quarantine. Latest COVID19 statistics, world news, inspirational quotes and cat photos.
Stars: ✭ 24 (-4%)
Mutual labels:  twilio, twilio-api
wireless-portable-fax
Build a cellular connected portable fax machine
Stars: ✭ 17 (-32%)
Mutual labels:  twilio, twilio-api
Twilio Python
A Python module for communicating with the Twilio API and generating TwiML.
Stars: ✭ 1,536 (+6044%)
Mutual labels:  twilio, twilio-api
twilio-taskrouter.js
JS SDK v2 for Twilio's TaskRouter skills based routing system.
Stars: ✭ 20 (-20%)
Mutual labels:  twilio, twilio-api
somleng
Open Source Implementation of Twilio's REST API
Stars: ✭ 33 (+32%)
Mutual labels:  twilio, twilio-api
ruby-whatsapp-bots
A repo of WhatsApp bots built in Ruby
Stars: ✭ 18 (-28%)
Mutual labels:  twilio, twilio-api
serverless-api
Node.js library to manage deploy Serverless Functions
Stars: ✭ 14 (-44%)
Mutual labels:  twilio
human-call-filter
Captcha for phone calls
Stars: ✭ 41 (+64%)
Mutual labels:  twilio
twilio-go
Twilio Go library
Stars: ✭ 136 (+444%)
Mutual labels:  twilio
personal-wealth-portfolio-mgt-bot
WARNING: This repository is no longer maintained ⚠️ This repository will not be updated. This repository will be kept available in read-only mode.
Stars: ✭ 43 (+72%)
Mutual labels:  twilio
plugin-rtc
Twilio CLI plugin which supports developing and deploying real-time communication apps
Stars: ✭ 35 (+40%)
Mutual labels:  twilio
imessage-chatbot
💬 Recurrent neural network -- generates messages in your style of speech! Trained on imessage data. Sqlite3, TensorFlow, Flask, Twilio SMS, AWS.
Stars: ✭ 33 (+32%)
Mutual labels:  twilio
module-twilio
Magento 2 Customer SMS notifications with Twilio
Stars: ✭ 29 (+16%)
Mutual labels:  twilio
botkit-sms
Twilio Programmable SMS implementation for Botkit.
Stars: ✭ 18 (-28%)
Mutual labels:  twilio
fonoster
🚀 The open-source alternative to Twilio
Stars: ✭ 5,072 (+20188%)
Mutual labels:  twilio
twilio-video-room-monitor.js
A browser-based tool that displays information and metrics about Twilio Video JavaScript applications
Stars: ✭ 22 (-12%)
Mutual labels:  twilio
SMS-Dial-up-App
Android app for SMS-based Dial-up
Stars: ✭ 26 (+4%)
Mutual labels:  twilio
terraform-provider-twilio
Terraform provider for Twilio. 🌎☎️ Preserved for archaeological fun. Please see the official Twilio TF provider @ https://github.com/twilio/terraform-provider-twilio.
Stars: ✭ 32 (+28%)
Mutual labels:  twilio
org-mode-sms-inbox
Harvest org-mode todos with Dropbox, Twilio, and IFTTT.
Stars: ✭ 19 (-24%)
Mutual labels:  twilio
twilito
A tiny, zero dependency Ruby helper for sending text messages with Twilio 💬
Stars: ✭ 16 (-36%)
Mutual labels:  twilio

Twiliolo

Golang API wrapper for Twilio API [WIP]

Build Status Go Report Card GoDoc

Installation

go get github.com/genesor/twiliolo

Documentation

GoDoc

Usage

Get an Incoming phone number with its Sid

package main

import (
  "fmt"
  "net/http"
  "github.com/genesor/twiliolo"
)

func main() {
  client := twiliolo.NewClient("ACCOUNT_SID", "AUTH_TOKEN", &http.Client{})

  number, err := client.IncomingPhoneNumber.Get("NUMBER_SID")
  if err != nil {
    fmt.Println(err)
  } else {
    fmt.Println(number.FriendlyName)
  }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].