Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/okushchenko/sms

API server to send SMS using GSM modem. Written in Go
https://github.com/okushchenko/sms

api go golang gsm gsm-modem modem sms

Last synced: 17 days ago
JSON representation

API server to send SMS using GSM modem. Written in Go

Awesome Lists containing this project

README

        

sms
===

sms is a web server which connects to your gsm modem via COM port and exposes http API to send messages.

To build this project run:
```
git clone https://github.com/alexgear/sms
godep go build
```

To run web server execute generated binary:
```
./sms
```

Sending a message is as easy as making http POST request:
```
curl -d "to=000000000000&text=hello" 127.0.0.1:8080/api/sms
```