FinestWebView-Android icon indicating copy to clipboard operation
FinestWebView-Android copied to clipboard

How to do a form post using FinestWebView?

Open pankaj-dunow opened this issue 4 years ago • 0 comments

I want to post some data to the url I am calling using FinestWebView. Basically, I want to achieve something like this which is achieved using simple WebView:

    WebView webview = new WebView(this);
    setContentView(webview);
    String url = "http://myUrl"; // The url to which data will be posted
    String postData = "myKeyValuePair"; //The key-value pair of data being posted
    webview.postUrl(url,postData.getBytes());

Please help me ASAP. Thanks in advance.

pankaj-dunow avatar Sep 09 '19 12:09 pankaj-dunow