diff options
author | Hari Hendaryanto <hari.hendaryanto@gmail.com> | 2018-09-21 01:35:12 +0700 |
---|---|---|
committer | Hari Hendaryanto <hari.hendaryanto@gmail.com> | 2018-09-21 01:35:12 +0700 |
commit | 0a58209b8cfca34e6c095ed5d799cab46017fe9f (patch) | |
tree | c96d1fa07e7c418ab98844e81caccb0e3e285603 /e3372-readsms.sh | |
parent | 41867ae39a215e3d966ad7ccd4a633698a39b020 (diff) |
E3372 read last 10 sms messages
Diffstat (limited to 'e3372-readsms.sh')
-rw-r--r-- | e3372-readsms.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/e3372-readsms.sh b/e3372-readsms.sh new file mode 100644 index 0000000..0af2f5b --- /dev/null +++ b/e3372-readsms.sh @@ -0,0 +1,16 @@ +#!/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/sms-list" -H "Cookie: $COOKIE" -H "__RequestVerificationToken: $TOKEN" -H "Content-Type: text/xml" -d "<request><PageIndex>1</PageIndex><ReadCount>10</ReadCount><BoxType>1</BoxType><SortType>0</SortType><Ascending>0</Ascending><UnreadPreferred>1</UnreadPreferred></request>" > modem_status.xml + +#cat modem_status.xml + +message=$(cat modem_status.xml | grep Content | sed -e 's/<[^>]*>//g') + +#message=$(echo $message | sed -e 's/^[[:space:]]*//') + +echo "$message\n" |