I am trying to post data to the server in the following manner from Android.
Uri uri = Uri.parse(URL_STRING);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
The URL_STRING when executed from the browser is posting the data. Through app it is not working. Where I am going wrong?