Show SMS List in PHP - Using Huawei Dongle E8372
0
2
I am using Huawei E8372, for displaying my sms list in PHP I have tried a code but not working showing error 125002 Below My code $MODEM_IP="192.168.8.1"; $ch = curl_init("http://$MODEM_IP/api/webserver/SesTokInfo"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $txResult = curl_exec($ch); //echo $txResult; $Token=substr($txResult,57,32); $Session=substr($txResult,108,128); //echo $Token; //echo $Session; $url = "http://192.168.8.1/api/sms/sms-list"; //echo $url; //exit(); $data='<request><PageIndex>1</PageIndex><ReadCount>3</ReadCount><BoxType>1</BoxType><SortType>0</SortType><Ascending>0</Ascending><UnreadPreferred>1</UnreadPreferred></request>'; $ch = curl_init()...