https://github.com/andikscript/springsendsms
Simple send SMS with Spring Boot with queue on redis
https://github.com/andikscript/springsendsms
Last synced: 12 months ago
JSON representation
Simple send SMS with Spring Boot with queue on redis
- Host: GitHub
- URL: https://github.com/andikscript/springsendsms
- Owner: andikscript
- Created: 2022-08-10T08:45:32.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-08-24T02:30:22.000Z (over 3 years ago)
- Last Synced: 2025-01-30T00:41:20.755Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 71.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring Send SMS
Simple send SMS with Spring Boot
## Featured
- Spring Web
- Twilio
- Send SMS from Rest API
## How to use
### Setting SID
- SendMessage.twilio.account.sid=... -> on src/main/resources/application.properties with Account SID Twilio
### Setting Auth Token
- SendMessage.twilio.account.authtoken=... -> on src/main/resources/application.properties with Auth Token from Twilio
### Setting Phone Number
- SendMessage.numberPhone=... -> on src/main/resources/application.properties with phone number from Twilio or registered
## API
Methods | Url | Action |
--- | --- | --- |
| GET | /api/phone/{phoneNumber}/verification | send message on phone number |
## Format JSON
```
{
"message":"{body message for send}"
}
```