vote up 0 vote down star

I'm making a App to send SMS trough VOIP providers from betamax...

To send I just need to execute the url

https://www.12voip.com/myaccount/sendsms.php?username=w​&password=x&from=y&to=z&text=some%20text

My app already creates the URL, but i cant understand how to execute...i think i have to make an http request....but after a few hours after answers i still didnt understood....

Can anyone help me execute that url with android?

flag
1  
I think you need to explain this a bit better. Do you need to post to this URL and get a response back? (I'm assuming). What are you going to do with the resulting response (if there is one)? – MattC Aug 11 at 18:45

2 Answers

vote up 2 vote down

Android contains the Apache Http Components in package org.apache.http. There you will find everything you need to call an URL with parameters.

And here you'll find the client tutorial: http://hc.apache.org/httpcomponents-client/tutorial/html/

You need to do something like this:

  1. Create an HttpClient (HttpClient client = new DefaultHttpClient();)
  2. Create a GET-method to URL (HttpGet req = new HttpGet("url-without-params");)
  3. Add parameters to method (req.setParams(params);)
  4. Execute method using client (HttpResponse res = client.executeMethod(req);)
  5. Check response (res.getStatusLine().getStatusCode();)

Good luck!

link|flag
vote up 0 vote down

I'm not 100% sure of what you are trying to do, but the answer is use the Apache Http Client which is included in android.

Here's the tutorial.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.