I need to put in my android applicazion a tool that uses the free service for sending free sms through internet…
I saw that many apps are able to integrate these sevices..
I tried a lot but I have not found anything useful..
So I ask you … how can I use the gateway of uthsms.net (for example) for send SMS with my Android application?
Sorry for the generic question..but I not found any starting point for resolve this question.
Thanks in advance
Use a Tool like Firebug to see what gets sent when you click the button on the website. I see that a POST-Request is done to uthsms.net with some parameters. You should be able to do the same POST with your app.
These are the parameter:
To send this POST-request in Android use following code:
The result seems to be a html-document. Somewhere inside you should find the success message, or possible errors.