I have to load url in webview with sending some cookies. HOw to achieve this ?
I am doing following code..
CookieManager cookieManager;
CookieSyncManager.createInstance(PrivacyActivity.this);
cookieManager = CookieManager.getInstance();
cookieManager.setCookie("param", "value");
CookieSyncManager.getInstance().sync();
WebSettings webSettings = wv.getSettings();
webSettings.setJavaScriptEnabled(true);
webSettings.setBuiltInZoomControls(true);
wv.setWebViewClient(new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
return super.shouldOverrideUrlLoading(view, url);
}
});
wv.loadUrl("https://example.com");
But not getting proper result. Just getting "https://example.com" as it is. Cookie does not works..
This solution works for me (Just add cookies to the CookieManager before loading the url and that's all):
I solved problem as,,,