We have built an android app that POST HTTP Request from Android to my PHP server.In response the webservice sends JSON object to android app to show results.
like one of the service is like
http://mydomain.com/test/weather.php?lat=13.4332&long=80.454 Since I am not expert in android so want to handle the security for webservice from PHP end.
How can I secure my webservice call so that only my app can use my webservice. I dont want if someone decrypt the apk and get the webservice URL and use it after customize the ouput data.
How can I achieve this? Please provide me any good example.