Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding a cookie to a HTTP request

I'm trying to add a cookie with a GUID to identify the user but my code doesn't seem to send any cookies when I run it on my test script.

My Java code:

    public void search(String q, int o) {
    final String query = q;
    final int offset = o;
    Thread searchThread = new Thread() {
        public void run() {
            try {
                DefaultHttpClient httpClient = new DefaultHttpClient();
                BasicHttpContext httpContext = new BasicHttpContext();
                CookieStore cookieStore = new BasicCookieStore();
                httpContext.setAttribute(ClientContext.COOKIE_STORE, cookieStore);
                cookieStore.addCookie(new BasicClientCookie("remixsid", guid));
                httpClient.setCookieStore(cookieStore);
                HttpPost httpPost = new HttpPost("http://192.168.1.43/test/test.php?section=audio&q=" + URLEncoder.encode(query, HTTP.UTF_8) + "&offset=" + offset);
                //HttpPost httpPost = new HttpPost("http://vkontakte.ru/gsearch.php?section=audio&q=" + URLEncoder.encode(query, HTTP.UTF_8) + "&offset=" + offset);
                HttpResponse response = httpClient.execute(httpPost, httpContext);
                String responseBody = EntityUtils.toString(response.getEntity());
                System.out.print(responseBody);
            } catch(Exception e) {
                System.out.println(e.toString());
            }
        }
    };
    searchThread.run();
}

My PHP code to test for cookies:

<?php
$cookies = $_COOKIE;

if(!count($cookies) > 0)
    echo 'No cookies!';

foreach ($cookies as $key=>$val)
    echo "$key--> $val";

?>

The GUID is retrieved with this code:

    public void login(String usr, String pass) {
    logout();
    final String username = usr;
    final String password = pass;
    Thread loginThread = new Thread() {
        public void run() {
            try {
                DefaultHttpClient httpClient = new DefaultHttpClient();
                HttpPost httpPost = new HttpPost("http://login.vk.com/?act=login&email=" + URLEncoder.encode(username, HTTP.UTF_8) + "&pass=" + URLEncoder.encode(password, HTTP.UTF_8));
                httpClient.execute(httpPost);
                List<Cookie> cookies = httpClient.getCookieStore().getCookies();
                for(Cookie cookie : cookies) {
                    System.out.println("Cookie: " + cookie.toString());
                    if(cookie.getName().contains("remixsid"))
                        guid = cookie.getValue();
                }
            } catch(Exception e) {
                System.out.println(e.toString());
                System.out.println("An error occured");
                if(loginHandler != null)
                    loginHandler.onLoginError(e);
                return;
            }
            if(!isLoggedIn()) {
                System.out.println("User credentials invalid");
                if(loginHandler != null)
                    loginHandler.onLoginInvalidCredentials();
                return;
            }
            if(loginHandler != null)
                loginHandler.onLoginSuccess();
            System.out.println("Login successfull GUID is: " + guid);
        }
    };
    loginThread.start();
}
like image 919
Jon Koops Avatar asked Dec 26 '22 23:12

Jon Koops


1 Answers

Setting the cookie header manually seems to work...

    public void search(String q, int o) {
    final String query = q;
    final int offset = o;
    Thread searchThread = new Thread() {
        public void run() {
            try {
                DefaultHttpClient httpClient = new DefaultHttpClient();
                HttpPost httpPost = new HttpPost("http://192.168.1.43/test/test.php");
                //HttpPost httpPost = new HttpPost("http://vkontakte.ru/gsearch.php?section=audio&q=" + URLEncoder.encode(query, HTTP.UTF_8) + "&offset=" + offset);
                httpPost.setHeader("Cookie", "remixsid=" + guid);
                HttpResponse response = httpClient.execute(httpPost);
                String responseBody = EntityUtils.toString(response.getEntity());
                System.out.println(responseBody);
            } catch(Exception e) {
                System.out.println(e.toString());
            }
        }
    };
    searchThread.start();
}
like image 124
Jon Koops Avatar answered Jan 05 '23 13:01

Jon Koops