Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/okushchenko/sms
- Owner: okushchenko
- License: mit
- Created: 2015-11-26T14:13:02.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-14T16:48:35.000Z (almost 9 years ago)
- Last Synced: 2024-10-14T11:03:15.874Z (about 1 month ago)
- Topics: api, go, golang, gsm, gsm-modem, modem, sms
- Language: Go
- Homepage:
- Size: 1.47 MB
- Stars: 39
- Watchers: 4
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```