I have to pass input parameters to a particular url. I use httpClient to extract the url. I used Live HttpHeaders to see the input parameters and got this below parameters.
{"email":"3rd.ik@gmail.com","password":"etah","meta":{"screen_resolution":{"height":1080,"width":1920}}}
Usually I use List and pass the input parameters like this,
List <NameValuePair> nvps = new ArrayList <NameValuePair>();
nvps.add(new BasicNameValuePair("email", "3rd.ik@gmail.com"));
nvps.add(new BasicNameValuePair("passsword", "etah"));
nvps.add(new BasicNameValuePair("meta",""));
But not sure how i will pass the height : width as above. ANy inputs much appreciated. Thanks!