glm4 / android_income_sms_gateway_webhook

Simple Android incoming SMS to URL forwarder

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incoming SMS to URL forwarder

How to use

Set sender phone number or name and URL. It should match the number or name you see in the SMS messenger app. If you want to send any SMS to URL, use * (asterisk symbol) as a name.

Every incoming SMS will be sent immediately to the provided URL. If the response code is not 2XX or the request ended with a connection error, the app will try to send again up to 10 times. Minimum first retry will be after 10 seconds, later wait time will increase exponentially. If the phone is not connected to the internet, the app will wait for the connection before the next attempt.

Request info

HTTP method: POST
Content-type: application/json; charset=utf-8
User-agent: SMS Forwarder App

Request example

Use this curl sample request to prepare your backend code

curl -X 'POST' 'https://yourwebsite.com/path' \
     -H 'user-agent: SMS Forwarder App' \
     -H 'content-type: application/json; charset=utf-8' \
     -d $'{"from":"1234567890","text":"Test"}'

Screenshots

Incoming SMS Webhook Gateway screenshot 1 Incoming SMS Webhook Gateway screenshot 2 Incoming SMS Webhook Gateway screenshot 3

Download apk

Download apk from release page

Get it on F-Droid

Get it on Amazon App Store

Recommendation

Use external monitoring tools like UpTime.onl to monitor your webhook URL and prevent it from downtime.

About

Simple Android incoming SMS to URL forwarder

License:MIT License


Languages

Language:Java 100.0%