Popularity
1.8
Growing
Activity
0.0
Stable
19
3
1
Programming language: Go
License: MIT License
Tags:
Third-party APIs
Latest version: v1.0.0
textbelt alternatives and similar packages
Based on the "Third-party APIs" category.
Alternatively, view textbelt alternatives based on common mentions on social networks and blogs.
-
goamz
Popular fork of goamz which adds some missing API calls to certain packages. -
webhooks
:fishing_pole_and_fish: Webhook receiver for GitHub, Bitbucket, GitLab, Gogs -
githubql
Package githubv4 is a client library for accessing GitHub GraphQL API v4 (https://docs.github.com/en/graphql). -
twitter-scraper
Scrape the Twitter Frontend API without authentication with Golang. -
gostorm
GoStorm is a Go library that implements the communications protocol required to write Storm spouts and Bolts in Go that communicate with the Storm shells. -
hipchat (xmpp)
A golang package to communicate with HipChat over XMPP -
clarifai
DEPRECATED: please use https://github.com/Clarifai/clarifai-go-grpc -
hipchat
This project implements a Go client library for the Hipchat API. -
go-trending
Go library for accessing trending repositories and developers at Github. -
go-tgbot
Golang telegram bot API wrapper, session-based router and middleware -
go-lark
An easy-to-use SDK for Feishu and Lark Open Platform (Messaging API only) -
cachet
Go(lang) client library for Cachet (open source status page system). -
simples3
Simple no frills AWS S3 Golang Library using REST with V4 Signing (without AWS Go SDK) -
go-postman-collection
Go module to work with Postman Collections -
GoMusicBrainz
a Go (Golang) MusicBrainz WS2 client library - work in progress
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
Do you think we are missing an alternative of textbelt or a related project?
README
textbelt.com API for GO
This library sends text messages to mobile phones using http://textbelt.com
Installing
go get
$ go get gopkg.in/dietsche/textbelt.v1
Example Code
package main
import (
"gopkg.in/dietsche/textbelt.v1"
)
func main() {
texter := textbelt.New()
phoneToText := "123-456-7890"
if err := texter.Text(phoneToText, "txt msg from go!"); err != nil {
panic(err)
}
}