Question

I am using this code but its not setting the cookie...

URL url = new URL("http://10.0.2.2/test2.php");
                HttpClient httpClient = new DefaultHttpClient();
                CookieStore cookieStore = new BasicCookieStore();
                Cookie cookie = new BasicClientCookie("xxt", "5a5b98563c4aabd675b81e4ba0fdf6cf");
                cookieStore.addCookie(cookie);

                Cookie cookie2 = new BasicClientCookie("XXT", "5a5b98563c4aabd675b81e4ba0fdf6cf");
                cookieStore.addCookie(cookie2);

                HttpContext localContext = new BasicHttpContext();
                localContext.setAttribute(ClientContext.COOKIE_STORE, cookieStore);

                HttpPost post = new HttpPost("http://10.0.2.2/test2.php");
                HttpResponse response = httpClient.execute(post, localContext);
                toReturn = EntityUtils.toString(response.getEntity());
                //InputStream is = conn.getInputStream();
                //toReturn = inputStreamToString(is).toString();
                Log.d("downloaded", toReturn);

What am I doing wrong?

Was it helpful?

Solution

I'm doing this:

    BasicClientCookie cookie = new BasicClientCookie("XXT", "5a5b98563c4aabd675b81e4ba0fdf6cf");
    cookie.setExpiryDate(new Date("Fri Dec 11 15:24:17 GMT+06:00 2015"));
    cookie.setDomain("10.0.2.2");
    cookie.setPath("/");
    cookie.setVersion(1);
    cookie.setComment("");
    cookie.setValue("5a5b98563c4aabd675b81e4ba0fdf6cf");
    cookieStore.addCookie(cookie);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top