Hello,
I am using the SMS Gateway feature and I have 3 concerns.
- Is there a way to Send SMS using a POST request and providing the sms message in the HTTP body? Currently I see that we are able to use GET. So I am forced to use
http://192.168.1.1/cgi-bin/sms_send?username=USER&password=PASS&number=0015555555555&text=test message
This is a problem when I would like to send longer messages.
-
When using the GET request, it doesn’t account for messages that have an ending paragraph and going to a new line. For example even it my message has a ‘\n’ in it, the message doesn’t recognize this as a new line.
-
When my messages are long and do not fit in a single SMS, the message is cut off and at the bottom of the message has this:
“Send ‘more’ to see the rest.
Authorization may be required.”
In order to get the rest of the message, the receiver would need to replay with “more”. Is there a way to disable this and to have the modem automatically send the rest of the message, even in additional SMS segments? Also to remove the “Authorization may be required.” message as well.