The RestSMS-App allows you to send SMS via Webservice from your Android-Device.
- Android Version 6.0 or higher
- Android-Device which is able to send SMS
Android´s default SMS-Limit are 30 SMS to a single phone number within 30 minutes.
You can change your SMS-Limit for your device (root-permission is not required).
- Make sure you have enabled USB-Debugging on your device and you are ready to use ADB.
- Connect your device to the pc and open the terminal.
- Open the adb-shell via the command:
adb shell
- Change the value of the SMS-Limit to the number of SMS you want to send within the 30 minutes timeframe. Via the command:
settings put global sms_outgoing_check_max_count 100
This command allows you to send 100 SMS to a phone number within the 30 minutes timeframe. - If you want to also change the timeframe, you can use the command:
settings put global sms_outgoing_check_interval_ms 900000
This command reduces the timeframe to 15 minutes.
If you entered both commands, you would be able to send 100 SMS to a phone number within 15 minutes.
The default server-url is http://127.0.0.1:8080/
.
You can change the port in the settings-menu. The ip can be changed via the public network address, so you can access the api from anywhere.
To send a SMS you can point to your address and use the /send-Endpoint (eg. http://127.0.0.1:8080/send
).
You have to send phoneno
and message
and if you enable authentication also token
as post-parameter (you can use form-data
and also x-www-form-urlencoded
).
A response you get a JSON with a success
and a message
variable.
message = "Hello World"
phoneno = "+4915100000000" (it´s also possible to define a list of phone numbers)
token = "123"
curl -X POST http://127.0.0.1:8080/send -H 'Cache-Control: no-cache' -H 'Content-Type: application/x-www-form-urlencoded' -d 'message=Hello%20World&phoneno=%2B4915100000000&token=123'
{
"success": true
}
{
"message": "message or phoneno parameter are missing!",
"success": false
}
The message variable holds the error-message, so you can adjust your request.