I\'m getting a HttpResponse from a server when checking if a username or password is correct.
When I load the url in a webview I want
Couple of comments which I found out from my experience and gave me headaches:
http and https urls are different. Setting a cookie for http://www.example.com is different than setting a cookie for https://www.example.comhttps://www.example.com/ works but https://www.example.com does not work.CookieManager.getInstance().setCookie is performing an asynchronous operation. So, if you load a url right away after you set it, it is not guaranteed that the cookies will have already been written. To prevent unexpected and unstable behaviours, use the CookieManager#setCookie(String url, String value, ValueCallback callback) (link) and start loading the url after the callback will be called.I hope my two cents save some time from some people so you won't have to face the same problems like I did.