Open grimsa opened 9 years ago
In fr.eolya.utils.http.HttpLoader.getHttpClient(String) method when a CookieStore is populated, the Domain for the cookies is not set, making them not be used later when making HTTP requests. The current code should be fixed:
BasicClientCookie cookie = new BasicClientCookie(pairs.getKey(), pairs.getValue());
//cookie.setDomain("your domain"); // <-- this should be implemented properly
cookie.setPath("/");
cookieStore.addCookie(cookie);
In fr.eolya.utils.http.HttpLoader.getAuthCookies method: