I want to send the following JSON text
{\"Email\":\"aaa@tbbb.com\",\"Password\":\"123456\"}
to a web service and read the response. I kno
Now since the HttpClient
is deprecated the current working code is to use the HttpUrlConnection
to create the connection and write the and read from the connection. But I preferred to use the Volley. This library is from android AOSP. I found very easy to use to make JsonObjectRequest
or JsonArrayRequest