When i am sending message to mobile i got an error like below
Sender ID Does not Exist or Pending or Route Invalid!
i will give the code
string strurl = "http://trans.digitelex.in/api/sendmsg.php?user=xxxxxxxx&pass=xxxxx&sender=xxxx&phone=xxxxx&text=TestSMS&priority=ndn&stype=normal";
// Create a request object
WebRequest request = HttpWebRequest.Create(strurl);
// Get the response back
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Stream s = (Stream)response.GetResponseStream();
StreamReader readStream = new StreamReader(s);
string dataString = readStream.ReadToEnd();
response.Close();
s.Close();
readStream.Close();
I got error like :-
Sender ID Does not Exist or Pending or Route Invalid!
thanks in advance
Madan ShekarPosted Oct 23, 2018, 2:34 AM
use msg 91 sms service for better output, login intio msz 91 create account and get the api key
route will be 4
id will be MSGIND
Naveen PochanaPosted Sep 3, 2019, 5:54 AM
Harish BatchuPosted Oct 23, 2018, 2:05 AM
Madan ShekarPosted Oct 23, 2018, 1:08 AM