I am developing an Android based application in which I have to send SMS to a URL.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
SMS is a mobile network based task. And a URL is related to the Internet.
So you can’t literally ‘send an SMS’ to a URL.
However, you can send some data to a URL using two methods – GET and POST.
For Example Look at Google’s URL:
Here we are sending three parameters to the Google.com server:
1. q (=search terms)
2. safe (=active)
3. qscrl (=1)
The + in the URL is a whitespace.
Here’s a link that show’s the difference b/n GET and POST methods:
http://www.cs.tut.fi/~jkorpela/forms/methods.html