diff options
author | Hari Hendaryanto <hari.hendaryanto@gmail.com> | 2018-09-21 01:30:57 +0700 |
---|---|---|
committer | Hari Hendaryanto <hari.hendaryanto@gmail.com> | 2018-09-21 01:30:57 +0700 |
commit | 41867ae39a215e3d966ad7ccd4a633698a39b020 (patch) | |
tree | 43265409e14034701cd6045dcbaf94ce09b21329 | |
parent | 59f1de7fb2d750f5d8c5c3ef9ce43df197fce49d (diff) |
E3372 send sms
-rw-r--r-- | e3372-sendsms.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/e3372-sendsms.sh b/e3372-sendsms.sh new file mode 100644 index 0000000..e79f77a --- /dev/null +++ b/e3372-sendsms.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +MODEM_IP="192.168.9.1" +curl -s -X GET "http://$MODEM_IP/api/webserver/SesTokInfo" > ses_tok.xml +COOKIE=`grep "SessionID=" ses_tok.xml | cut -b 10-147` +TOKEN=`grep "TokInfo" ses_tok.xml | cut -b 10-41` + +curl -s -X POST "http://$MODEM_IP/api/sms/send-sms" -H "Cookie: $COOKIE" -H "__RequestVerificationToken: $TOKEN" -H "Content-Type: text/xml" -d "<?xml version='1.0' encoding='UTF-8'?><request><Index>-1</Index><Phones><Phone>363</Phone></Phones><Sca></Sca><Content>USAGE</Content><Length>5</Length><Reserved>1</Reserved><Date>-1</Date></request>" > modem_status.xml + +cat modem_status.xml + |