I am trying to do webview.postUrl in android code
it automatically adds Origin:null in the headers
How to prevent this?
My Code below
import butterknife.Bind;
.....
@Bind(R.id.webview)
WebView webview;
....
....
protected final void loadUrl(String url) {
webview.postUrl("http://localhost:8080/myapp/login", mypostdata);
}